using System; public class DateExample { public static void Main() { DateTime dt1 = new DateTime(2012,1,16); DateTime dt2 = new DateTime(2012,2,16); TimeSpan ts = dt2 - dt1; Console.WriteLine(ts.ToString()); } }