AI智能
改变未来

C#学习笔记——Time类


DateTime类

DateTime dt = new DateTime();dt = DateTime.Now;                         //获取当前的时间日期int year = dt.Year;       //提取年int month = dt.Month;           //提取月nt day = dt.Day;              //提取日int hour = dt.Hour;          //提取时int minute = dt.Minute;   //提取分int second = dt.Second;   //提取秒//IsLeapYear()判断是否是闰年,是则返回true//ToString()输出时间//DayOfYea一年中的第几天//DaysInMonth()一个月有多少天Console.WriteLine(dt.ToShortTimeString());           //显示小时和分钟Console.WriteLine(dt.ToShortDateString());           //显示年月日

TimeSpan类

DateTime Dt = new DateTime(2020, 10, 1);TimeSpan ts = Dt - DateTime.Now;           //TimeSpan类表示时间段Console.WriteLine(ts.Hours.ToString());//TimeSpan.Days.ToString()以日为单位显示
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » C#学习笔记——Time类