Mega Code Archive

 
Categories / C# Tutorial / Date Time
 

For each calendar, displays the current year, the number of months in that year, and the number of days in each month of that ye

using System; using System.Globalization; public class SamplesCalendar  {    public static void Main(){       Calendar[] myCals = new Calendar[8];       myCals[0] = new GregorianCalendar();       myCals[1] = new HebrewCalendar();       myCals[2] = new HijriCalendar();       myCals[3] = new JapaneseCalendar();       myCals[4] = new JulianCalendar();       myCals[5] = new KoreanCalendar();       myCals[6] = new TaiwanCalendar();       myCals[7] = new ThaiBuddhistCalendar();       int i, j, iYear, iMonth, iDay;       DateTime myDT = DateTime.Today;       for ( i = 0; i < myCals.Length; i++ )  {          iYear = myCals[i].GetYear( myDT );          Console.WriteLine( "{0}, Year: {1}", myCals[i].GetType(), myCals[i].GetYear( myDT ) );          Console.WriteLine( "   MonthsInYear: {0}", myCals[i].GetMonthsInYear( iYear ) );          Console.WriteLine( "   DaysInYear: {0}", myCals[i].GetDaysInYear( iYear ) );          Console.WriteLine( "   Days in each month:" );          for ( j = 1; j <= myCals[i].GetMonthsInYear( iYear ); j++ ){             Console.Write( " {0,-5}", myCals[i].GetDaysInMonth( iYear, j ) );          }          iMonth = myCals[i].GetMonth( myDT );          iDay = myCals[i].GetDayOfMonth( myDT );          Console.WriteLine( "   IsLeapDay:   {0}", myCals[i].IsLeapDay( iYear, iMonth, iDay ) );          Console.WriteLine( "   IsLeapMonth: {0}", myCals[i].IsLeapMonth( iYear, iMonth ) );          Console.WriteLine( "   IsLeapYear:  {0}", myCals[i].IsLeapYear( iYear ) );       }    } }