在C#中使用String.Format方法處理日期和時間可以通過以下方式:
DateTime now = DateTime.Now;
string formattedDate = string.Format("Today is {0:MM/dd/yyyy}", now);
string formattedTime = string.Format("The current time is {0:HH:mm:ss}", now);
DateTime now = DateTime.Now;
string formattedDateTime = string.Format("The current date and time is {0:yyyy-MM-dd HH:mm:ss}", now);
DateTime now = DateTime.Now;
string formattedDate = now.ToString("MM/dd/yyyy");
string formattedTime = now.ToString("HH:mm:ss");
string formattedDateTime = now.ToString("yyyy-MM-dd HH:mm:ss");
無論使用哪種方式,都可以通過指定不同的日期和時間格式字符串來格式化輸出的日期和時間。