摘要: protected string CreateRandomCode(int codeCount) { string allChar = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,P,Q,R,S,T,U,W,X,Y,Z"; string[] allCharArray = allChar.Split(','); string randomCode = ""; int temp = -1; Random random = new Random(); for (int i = 0; i < c... 阅读全文
posted @ 2013-02-04 16:56 sirili 阅读(162) 评论(0) 推荐(0) 编辑