using System.Globalization;
public static void Main()
DateTime todayDate = DateTime.Now;
Console.WriteLine("Current Date : {0}", todayDate.ToFullDateTimeString());
DateTime tomorrow = todayDate.Tomorrow();
Console.WriteLine("After calling Tomorrow: {0}", tomorrow.ToFullDateTimeString());