会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
清山博客
慎言其余,则寡尤;多见阙殆,慎行其余,则寡悔。言寡尤,行寡悔。
博客园
首页
新随笔
联系
订阅
管理
公历转农历函数
class Program { static void Main(string[] args) { System.Globalization.ChineseLunisolarCalendar chineseLunisolarCalendar = new System.Globalization.ChineseLunisolarCalendar(); DateTime date = DateTime.Now; int year = chineseLunisolarCalendar.GetYear(date); int month = chineseLunisolarCalendar.GetMonth(date); int day = chineseLunisolarCalendar.GetDayOfMonth(date); Console.WriteLine(string.Format("公历:{0} 农历:{1}", date.ToString("yyyy-MM-dd"), (year + "-" + month + "-" + day))); Console.Read(); } }
posted @
2012-01-11 13:26
清山博客
阅读(
316
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告