asp.net常用函数收藏第1/2页

2019-01-13 10:33:36王旭

{
if (Sleep)
System.Threading.Thread.Sleep(3);
string result = "";
System.Random random = new Random();
for (int i = 0; i < Length; i++)
{
result += random.Next(10).ToString();
}
return result;
}
12下一页阅读全文