在C#中,可以使用字符串的Format
方法来格式化日期。以下是一个示例:
DateTime now = DateTime.Now;
string formattedDate = now.ToString("yyyy-MM-dd HH:mm:ss");
Console.WriteLine(formattedDate);
在上面的示例中,我们使用ToString
方法来将DateTime
对象转换为一个格式化的字符串。在括号中,我们传入一个自定义的格式化字符串"yyyy-MM-dd HH:mm:ss"
来指定日期的显示格式。可以根据需要调整格式化字符串来满足不同的格式化要求。