Calendar.ToDateTime : Calendar « System.Globalization « C# / C Sharp by API






Calendar.ToDateTime

 

    using System;
    using System.Globalization;

  class Class1
  {
    static void Main(string[] args)
    {
      Calendar MyCalendar = new  GregorianCalendar();
      CultureInfo MyCulture = new CultureInfo("es-ES");
      DateTime MyDate = new DateTime(2006,8,22,15,30,0,0);

      //
      Console.WriteLine(MyCalendar.ToDateTime(MyDate.Year, 
                MyDate.Month, 
                MyDate.Day, 
                MyDate.Hour, 
                MyDate.Minute, 0, 0));
    }
  }

   
  








Related examples in the same category

1.Calendar.AddMinutes
2.Calendar.ToFourDigitYear
3.Calendar.TwoDigitYearMax