如题注:不能声明一个罗列出26个英语字母的方式
在线等 我是回帖很积极的
public string GetRandomString(int len) { var rnd = new Random(); string result = string.Empty; for (int x = 0; x < len; x++) { int n = rnd.Next(26) + 65; result += (char)n; } return result; }
感谢!!!