您好,登錄后才能下訂單哦!
這篇文章主要介紹“C#公歷農歷的轉換方法”,在日常操作中,相信很多人在C#公歷農歷的轉換方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C#公歷農歷的轉換方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
原來還準備自己寫算法,并研究農歷規則。發現那太難和麻煩了,光是農歷的推算那就我等專門研究歷法的人一下搞懂的。后來發現.NET類庫也提供一些基礎的農歷類System.Globalization.ChineseLunisolarCalendar。改裝了一下如DateTime時間形式,實現了公歷農歷轉換的功能,但是只能算到1900~2100年之間的。基本夠日常使用了。C#轉換農歷代碼如下:
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Text;
namespaceSystem
...{
/**////<summary>
///中國常用農歷日期時間類
///zj53hao@qq.comhttp://hi.csdn.net/zj53hao
///</summary>
classChinaDateTime
...{
privateintyear,month,dayOfMonth;
privateboolisLeap;
publicDateTimetime;
/**////<summary>
///獲取當前日期的農歷年
///</summary>
publicintYear
...{
get...{returnyear;}
}
/**////<summary>
///獲取當前日期的農歷月份
///</summary>
publicintMonth
...{
get...{returnmonth;}
}
/**////<summary>
///獲取當前日期的農歷月中天數
///</summary>
publicintDayOfMonth
...{
get...{returndayOfMonth;}
}
/**////<summary>
///獲取當前日期是否為閏月中的日期
///</summary>
publicboolIsLeap
...{
get...{returnisLeap;}
}
System.Globalization.ChineseLunisolarCalendarcc;
/**////<summary>
///返回指定公歷日期的陰歷時間
///</summary>
///<paramnameparamname="time"></param>
publicChinaDateTime(DateTimetime)
...{
cc=newSystem.Globalization.ChineseLunisolarCalendar();
if(time>cc.MaxSupportedDateTime||time<cc.MinSupportedDateTime)
thrownewException("參數日期時間不在支持的范圍內,支持范圍:
"+cc.MinSupportedDateTime.ToShortDateString()+"到
"+cc.MaxSupportedDateTime.ToShortDateString());year=cc.GetYear(time);
month=cc.GetMonth(time);
dayOfMonth=cc.GetDayOfMonth(time);
isLeap=cc.IsLeapMonth(year,month);
if(isLeap)month-=1;
this.time=time;
}
到此,關于“C#公歷農歷的轉換方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。