programming-examples/c-sharp/Events/C# Program to get the Universal Time.cs
2019-11-15 12:59:38 +01:00

14 lines
317 B
C#

/*
* C# Program to get the Universal Time
*/
using System;
class Program
{
static void Main()
{
TimeZone zone = TimeZone.CurrentTimeZone;
DateTime univ = zone.ToUniversalTime(DateTime.Now);
Console.WriteLine("Universal Time is {0}",univ);
Console.Read();
}
}