如何使此代码显示当前时间,准确显示第二个?
using System;
namespace TestCode
{
class DisplayTime
{
static void Main()
{
DateTime now = DateTime.Now;
Console.WriteLine(" Blah Blah Blah ");
Console.WriteLine(now);
Console.ReadLine();
}
}
}
答案 0 :(得分:3)
默认情况下,ToString()
已经为您完成了。
Console.WriteLine("Don't swear."); //change this too
Console.WriteLine(now.ToString());
您还可以根据需要以特定格式打印:
Console.WriteLine("Don't swear."); //change this too
Console.WriteLine(now.ToString(yyyy-MM-dd HH:mm:ss.fff)); //up to milliseconds
答案 1 :(得分:0)
DateTime time = DateTime.Now;
string Time = time.ToString("mm");
Console.WriteLine($"{time}");
Console.ReadLine();
它不会像上面提到的人那样显示毫秒,但也许会这样做。