c#獲取時(shí)間的方法有哪些

c#
小億
219
2024-03-06 10:07:54

在C#中,獲取時(shí)間的方法有以下幾種:

  1. 使用DateTime類的靜態(tài)方法Now獲取當(dāng)前系統(tǒng)時(shí)間:
DateTime currentTime = DateTime.Now;
  1. 使用DateTime類的靜態(tài)方法UtcNow獲取當(dāng)前系統(tǒng)的UTC時(shí)間:
DateTime currentUtcTime = DateTime.UtcNow;
  1. 使用DateTime類的構(gòu)造函數(shù)創(chuàng)建指定時(shí)間:
DateTime specifiedTime = new DateTime(2022, 12, 31, 23, 59, 59);
  1. 使用DateTime類的屬性獲取特定時(shí)間信息,比如年、月、日、小時(shí)、分鐘等:
int year = currentTime.Year;
int month = currentTime.Month;
int day = currentTime.Day;
int hour = currentTime.Hour;
int minute = currentTime.Minute;
  1. 使用DateTime類的ToString方法將時(shí)間格式化為指定的字符串:
string formattedTime = currentTime.ToString("yyyy-MM-dd HH:mm:ss");

這些是在C#中獲取時(shí)間的一些常用方法,開發(fā)中根據(jù)具體需求選擇合適的方法來獲取時(shí)間信息。

0