Date Time C#

using System;
public class Test
{
   public static void Main()
   {
        DateTimeOffset offsetDate; 
        DateTime regularDate;
        
        offsetDate = DateTimeOffset.Now;
        regularDate = offsetDate.DateTime;
        Console.WriteLine("{0} converts to {1}, Kind {2}.", offsetDate.ToString(), regularDate, regularDate.Kind);
        
        offsetDate = DateTimeOffset.UtcNow;
        regularDate = offsetDate.DateTime;
        Console.WriteLine("{0} converts to {1}, Kind {2}.", offsetDate.ToString(), regularDate, regularDate.Kind);
   }
}