Date Time C#

using System;
using System.Globalization;
public class Test
{
   public static void Main()
   {
        DateTimeOffset theTime = new DateTimeOffset(2008, 3, 1, 14, 15, 00, DateTimeOffset.Now.Offset);
        Console.WriteLine("The hour component of {0} is {1}.", theTime, theTime.Hour);
        
        Console.WriteLine("The hour component of {0} is{1}.", theTime, theTime.ToString(" H"));
        
        Console.WriteLine("The hour component of {0} is {1}.",theTime, theTime.ToString("HH"));
   }
}