在C#中,可以使用ToString()
方法將日期轉換為字符串。以下是幾個示例:
DateTime currentDate = DateTime.Now;
string dateString = currentDate.ToString();
DateTime currentDate = DateTime.Now;
string dateString = currentDate.ToString("yyyy-MM-dd HH:mm:ss");
在上面的示例中,日期將以"年-月-日 時:分:秒"的格式進行轉換。
DateTime currentDate = DateTime.Now;
string dateString = currentDate.ToString("MMMM dd, yyyy");
在上面的示例中,日期將以"月份 日, 年份"的格式進行轉換。
請注意,日期格式字符串中的特殊字符需要用單引號括起來,以避免與標準格式字符混淆。例如,如果要在日期字符串中包含單引號字符,可以使用兩個連續的單引號來表示。例如:
DateTime currentDate = DateTime.Now;
string dateString = currentDate.ToString("yyyy'年'MM'月'dd'日'");
在上面的示例中,日期將以"年月日"的格式進行轉換,例如"2022年08月31日"。