fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. DateTime dt = new DateTime(2012, 1, DateTime.DaysInMonth(2012, 1));
  8. Console.WriteLine(dt.DayOfWeek);
  9. DateTime dt1 = new DateTime(2012, 1, 1);
  10. Console.WriteLine(dt1.DayOfWeek);
  11. }
  12. }
Success #stdin #stdout 0.03s 33920KB
stdin
Standard input is empty
stdout
Tuesday
Sunday