向C#控制台数组添加时间的方法有多种。以下是一种常见的方法:
DateTime[] times = new DateTime[5];
for (int i = 0; i < times.Length; i++)
{
times[i] = DateTime.Now;
}
for (int i = 0; i < times.Length; i++)
{
Console.WriteLine(times[i]);
}
完整的示例代码如下:
using System;
class Program
{
static void Main(string[] args)
{
DateTime[] times = new DateTime[5];
for (int i = 0; i < times.Length; i++)
{
times[i] = DateTime.Now;
}
for (int i = 0; i < times.Length; i++)
{
Console.WriteLine(times[i]);
}
}
}
这样,您就可以向C#控制台数组添加时间并在控制台中显示它们了。请注意,这只是一种示例方法,您可以根据自己的需求进行修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云