fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. DateTime d = new DateTime(2019, 1, 31);
  8. d = d.AddMonths(1);
  9. Console.WriteLine(d);
  10. }
  11. }
Success #stdin #stdout 0.03s 16732KB
stdin
Standard input is empty
stdout
2/28/2019 12:00:00 AM