摘要: using System;using System.Text;using System.Collections.Generic;using System.Security.Cryptography;namespace Utils{ public class Rnd { [Flags] public enum CharType { None = 0, Numbers = 1, LowerLetter = 2, UpperLetter = 4, ... 阅读全文
posted @ 2013-01-25 15:29 beikx 阅读(154) 评论(0) 推荐(0) 编辑