using System;
public class Program
{
public static void Main()
DateTimeOffset now = DateTime.SpecifyKind( DateTime.Now , DateTimeKind.Local ) ;
string formattedNow = now.ToString("yyyy-MM-ddThh:mm:ss.sss-hh:mm") ;
Console.WriteLine("TimeStamp : " + formattedNow);
Console.WriteLine();
}