在C#中,获取时间的方法有以下几种:
DateTime currentTime = DateTime.Now;
DateTime currentUtcTime = DateTime.UtcNow;
DateTime specifiedTime = new DateTime(2022, 12, 31, 23, 59, 59);
int year = currentTime.Year;
int month = currentTime.Month;
int day = currentTime.Day;
int hour = currentTime.Hour;
int minute = currentTime.Minute;
string formattedTime = currentTime.ToString("yyyy-MM-dd HH:mm:ss");
这些是在C#中获取时间的一些常用方法,开发中根据具体需求选择合适的方法来获取时间信息。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c# winform 如何设计用户友好的界面