在C#中,可以使用DateTime對象的ToString方法來格式化日期時間。以下是一些常用的日期時間格式化樣式:
示例代碼:
DateTime dt = DateTime.Now;
string formattedDate = dt.ToString("yyyyMMdd");
Console.WriteLine(formattedDate);
string formattedDateTime = dt.ToString("yyyy-MM-dd HH:mm:ss");
Console.WriteLine(formattedDateTime);
string formattedDateLong = dt.ToString("MMM dd, yyyy");
Console.WriteLine(formattedDateLong);
string formattedTime = dt.ToString("HH:mm:ss");
Console.WriteLine(formattedTime);
string formattedDateTimeFull = dt.ToString("dddd, MMMM dd, yyyy HH:mm:ss");
Console.WriteLine(formattedDateTimeFull);
以上是一些常用的日期時間格式化樣式,您可以根據(jù)需要選擇合適的格式化樣式來格式化日期時間。