Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/6tail/tyme4net
Tyme是一个非常强大的日历工具库,可以看作 Lunar 的升级版,拥有更优的设计和扩展性,支持公历和农历、星座、干支、生肖、节气、法定假日等。
https://github.com/6tail/tyme4net
festival holiday lunar sixtycycle solar
Last synced: about 8 hours ago
JSON representation
Tyme是一个非常强大的日历工具库,可以看作 Lunar 的升级版,拥有更优的设计和扩展性,支持公历和农历、星座、干支、生肖、节气、法定假日等。
- Host: GitHub
- URL: https://github.com/6tail/tyme4net
- Owner: 6tail
- License: mit
- Created: 2024-06-17T14:03:24.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T14:11:22.000Z (3 months ago)
- Last Synced: 2024-08-19T16:34:55.394Z (3 months ago)
- Topics: festival, holiday, lunar, sixtycycle, solar
- Language: C#
- Homepage: https://6tail.cn/tyme.html
- Size: 162 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Tyme [![License](https://img.shields.io/badge/license-MIT-4EB1BA.svg?style=flat-square)](https://github.com/6tail/tyme4j/blob/master/LICENSE)
Tyme是一个非常强大的日历工具库,可以看作 [Lunar](https://6tail.cn/calendar/api.html "https://6tail.cn/calendar/api.html") 的升级版,拥有更优的设计和扩展性,支持公历和农历、星座、干支、生肖、节气、法定假日等。
> 基于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);
// 转农历日
var lunarDay = solarDay.GetLunarDay();
Console.WriteLine(lunarDay.ToString());
Console.WriteLine(solarDay.ToString());
}
}
}## 文档
请移步至 [https://6tail.cn/tyme.html](https://6tail.cn/tyme.html "https://6tail.cn/tyme.html")
## Star History
[![Star History Chart](https://api.star-history.com/svg?repos=6tail/tyme4net&type=Date)](https://star-history.com/#6tail/tyme4net&Date)