KoreanLunisolarCalendar1 c# 양력 -> 음력 변환 namespace HelloWorld { class Program { static void Main(string[] args) { // 양력 -> 음력 DateTime date = new DateTime(2021, 2, 17); Console.WriteLine($"DateFormat: {ToLunarDateTime(date).ToString("yyyy-MM-dd")}"); } // 양력 -> 음력 변환 public static DateTime ToLunarDateTime(DateTime date) { int leapMonth; int lunarYear; int lunarMonth; int lunarDay; System.Globalization.KoreanLunisolarCalendar lunar = ne.. 2021. 12. 5. 이전 1 다음 반응형