Tyme是一个非常强大的日历工具库,可以看作 Lunar 的升级版,拥有更优的设计和扩展性,支持公历、农历、藏历、星座、干支、生肖、节气、法定假日等。
基于netstandard2.0、C#7.3
using System;
using tyme.solar;
namespace demo
{
class Program
{
static void Main(string[] args)
{
// 公历日
var solarDay = SolarDay.FromYmd(1986, 5, 29);
// 1986年5月29日
Console.WriteLine(solarDay.ToString());
// 转农历日
var lunarDay = solarDay.GetLunarDay();
// 农历丙寅年四月廿一
Console.WriteLine(lunarDay.ToString());
// 转藏历日
var rabByungDay = solarDay.GetRabByungDay();
// 第十七饶迥火虎年四月廿一
Console.WriteLine(rabByungDay.ToString());
}
}
}
请移步至 https://6tail.cn/tyme.html
- 感谢许剑伟老师分享的寿星天文历,本项目节气算法引自 https://github.com/sxwnl/sxwnl
- 感谢stonelf,本项目藏历数据引自 https://github.com/stonelf/zangli