码迷,mamicode.com
首页 > Windows程序 > 详细

C# 生成随机数

时间:2016-11-24 07:31:24      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:pen   and   ret   guid   hashcode   builder   hash   log   ++   

/// <summary>
        /// 创建随机数
        /// </summary>
        /// <param name="num"></param>
        /// <returns></returns>
        private string CreateRandom(int num)
        {
            string str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < num; i++)
            {
                sb.Append(str[new Random(Guid.NewGuid().GetHashCode()).Next(0, str.Length - 1)]);
            }
            return sb.ToString();
}

 

C# 生成随机数

标签:pen   and   ret   guid   hashcode   builder   hash   log   ++   

原文地址:http://www.cnblogs.com/testsec/p/6095606.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!