软件编程
位置:首页>> 软件编程>> C#编程>> c# 生成随机时间的小例子

c# 生成随机时间的小例子

  发布时间:2023-10-04 02:44:29 

标签:c#,随机,时间

Random random = new Random((int)(DateTime.Now.Ticks));
            int i = 0;
            while (i < 100)
            {
                int hour = random.Next(2, 5);
                int minute = random.Next(0, 60);
                int second = random.Next(0, 60);
                string tempStr = string.Format("{0} {1}:{2}:{3}", DateTime.Now.ToString("yyyy-MM-dd"), hour, minute, second);
                DateTime rTime = Convert.ToDateTime(tempStr);
                Console.WriteLine(rTime.ToString());
                i++;
            }
            Console.ReadKey();
0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com