fork(1) download
  1. using System;
  2. using System.Globalization;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string date = "Sun, 17 Mar 2013 12:40:23 +0000";
  9. DateTime dt = DateTime.Parse(date, CultureInfo.InvariantCulture);
  10. Console.WriteLine(dt.ToString("dd"));
  11. Console.WriteLine(dt.ToString("MMMM"));
  12. Console.WriteLine(dt.ToString("yyyy"));
  13. }
  14. }
Success #stdin #stdout 0.07s 34040KB
stdin
Standard input is empty
stdout
17
March
2013