C# 썸네일형 리스트형 C# 양력 음력 변환 1. 양력 -> 음력 변환 public string ToLunarDate(string _year, string _month, string _day) { KoreanLunisolarCalendar klc = new KoreanLunisolarCalendar(); int year = Convert.ToInt32(_year); int month = Convert.ToInt32(_month); int day = Convert.ToInt32(_day); if (klc.GetMonthsInYear(year) > 12) { int leapMonth = klc.GetLeapMonth(year); if (month >= leapMonth) { month--; } } return new DateTime(year, mont.. 더보기 이전 1 2 3 4 5 6 다음