您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)C#中有哪些常用的時(shí)間函數(shù),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
DateTime數(shù)字型
System.DateTimecurrentTime=newSystem.DateTime();
C#時(shí)間函數(shù)1、取當(dāng)前年月日時(shí)分秒
currentTime=System.DateTime.Now;
C#時(shí)間函數(shù)2、取當(dāng)前年
intyear=currentTime.Year;
C#時(shí)間函數(shù)3、取當(dāng)前月
intmonth=currentTime.Month;
C#時(shí)間函數(shù)4、取當(dāng)前日
intday=currentTime.Day;
C#時(shí)間函數(shù)5、取當(dāng)前時(shí)
inthour=currentTime.Hour;
C#時(shí)間函數(shù)6、取當(dāng)前分
intmin=currentTime.Minute;
C#時(shí)間函數(shù)7、取當(dāng)前秒
intsec=currentTime.Second;
C#時(shí)間函數(shù)8、取當(dāng)前毫秒
intmillisec=currentTime.Millisecond;
C#時(shí)間函數(shù)9、取中文日期顯示——年月日時(shí)分
stringstrY=currentTime.ToString("f");//不顯示秒
C#時(shí)間函數(shù)10、取中文日期顯示_年月
stringstrYM=currentTime.ToString("y");
C#時(shí)間函數(shù)11、取中文日期顯示_月日
stringstrMD=currentTime.ToString("m");
C#時(shí)間函數(shù)12、取中文年月日
stringstrYMD=currentTime.ToString("D");
C#時(shí)間函數(shù)13、取當(dāng)前時(shí)分,格式為:14:24
stringstrT=currentTime.ToString("t");
C#時(shí)間函數(shù)14、取當(dāng)前時(shí)間,格式為:2008-09-23T14:46:48
stringstrT=currentTime.ToString("s");
C#時(shí)間函數(shù)15、取當(dāng)前時(shí)間,格式為:2003-09-2314:48:30Z
stringstrT=currentTime.ToString("u");
C#時(shí)間函數(shù)16、取當(dāng)前時(shí)間,格式為:2003-09-2314:48
stringstrT=currentTime.ToString("g");
C#時(shí)間函數(shù)17、取當(dāng)前時(shí)間,格式為:Tue,23Sep200314:52:40GMT
stringstrT=currentTime.ToString("r");
C#時(shí)間函數(shù)18、獲得當(dāng)前時(shí)間n天后的日期時(shí)間
DateTimenewDay=DateTime.Now.AddDays(100);//100天后的日期時(shí)間
上述就是小編為大家分享的C#中有哪些常用的時(shí)間函數(shù)了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。