取亂數!!!
讓您可以自訂要幾碼的亂數,
然後數字、英文大小寫,全都不須煩惱。
程式幫您搞定囉。
public static string GetRandomString(int length)
{
Random r = new Random();
string code = string.Empty;
for (int i = 0; i < length; ++i)
{
switch (r.Next(0, 3))
{
case 0: code += r.Next(0, 10); break;
case 1: code += (char)r.Next(65, 91); break;
case 2: code += (char)r.Next(97, 122); break;
}
}
return code;
}
沒有留言:
張貼留言