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

自学C#记录—文本操作—取随机字母

时间:2016-08-31 00:22:25      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:

        /// <summary>  
        /// 取随机字母  
        /// </summary>  
        /// <param name="Count">字母个数</param>  
        /// <returns>返回指定个数的随机字母串</returns> 
        public static string GetRandomLetter(int Count)
        {
            String[] s = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" };
            StringBuilder stb = new StringBuilder();
            Random rd = new Random(Guid.NewGuid().GetHashCode());

            for (int i = 0; i < Count; i++)
            {
                stb.Append(s[rd.Next(26)]);
            }
            return stb.ToString();
        }

 

自学C#记录—文本操作—取随机字母

标签:

原文地址:http://www.cnblogs.com/xiaomihu/p/5823997.html

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