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

2019-04-01 22:19:48王旭

{
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下一页阅读全文