■ DateTime 구조체를 사용해 두 날짜 사이에서 개월 수를 구하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
using System; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 개월 수 구하기 - GetMonthCount(fromDate, toDate) /// <summary> /// 개월 수 구하기 /// </summary> /// <param name="fromDate">FROM 날짜</param> /// <param name="toDate">TO 날짜</param> /// <returns>개월 수</returns> private static int GetMonthCount(DateTime fromDate, DateTime toDate) { int month1; int month2; if(fromDate < toDate) { month1 = (toDate.Month - fromDate.Month); month2 = (toDate.Year - fromDate.Year ) * 12; } else { month1 = (fromDate.Month - toDate.Month); month2 = (fromDate.Year - toDate.Year ) * 12; } return month1 + month2; } #endregion #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { DateTime fromDate = new DateTime(2017, 3, 3); DateTime toDate = new DateTime(2018, 6, 6); int monthCount = GetMonthCount(fromDate, toDate); Console.WriteLine($"FROM 날짜 : {fromDate }"); Console.WriteLine($"TO 날짜 : {toDate }"); Console.WriteLine($"개월 수 : {monthCount}"); } #endregion } } |