C# 生成随机数字, 可用作与生成随机验证码

C# 生成随机数字, 可用作与生成随机验证码
using System;

namespace ConsoleApp3
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(GenerateNonceNum(5));
            Console.Read();
        }

        /// <summary>
        /// 生成随机数字
        /// </summary>
        /// <param name="length">字符串长度</param>
        /// <returns></returns>
        public static string GenerateNonceNum(int length)
        {
            char[] chars = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', };
            string result = "";
            Random rnd = new Random(Guid.NewGuid().GetHashCode());
            for (int i = 0; i < length; i++)
            {
                result += chars[rnd.Next(chars.Length)];
            }
            return result;
        }
    }
}

作者最新文章
C# 使用 CSVHelper 操作 csv 文件, .net core, .net framework 读取写入 csv 文件
C# 实现字符串文本换行的方法,文本如何换行
C# 如何循环读取文件每一行文本内容
C# DateTime AddMonths 的错误用法导致跳过日期
C# 全角转换半角,半角转换为全角