programming-examples/c-sharp/Events/C# Program to get the Local Time.cs

14 lines
317 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
* C# Program to get the Local Time
*/
using System;
class Program
{
static void Main()
{
TimeZone zone = TimeZone.CurrentTimeZone;
DateTime local = zone.ToLocalTime(DateTime.Now);
Console.WriteLine("The Local Time is : {0}",local);
Console.ReadLine();
}
}