> Reference: - https://msdn.microsoft.com/en-us/library/ms912391(v=winembedded.11).aspx [TestMethod] public void TestMethod1() { // Reference : https://msdn.microsoft.com/en-us/library/ms912391(v=winembedded.11).asp DateTime date1 = DateTime.UtcNow; Console.WriteLine(date1); DateTime MyTimeInWesternCentralAmerica = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(date1, "Central America Standard Time"); DateTime MyTimeInWesternEurope = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(date1, "W. Europe Standard Time"); DateTime MyTimeInManila = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(date1, "Singapore Standard Time"); DateTime MyTimeInNorway = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(date1, "Central European Standard Time"); Console.WriteLine("MyTimeInWesternEurope: {0}", MyTimeInWesternEurope); Console.WriteLine("MyTimeInManila: {0}", MyTimeInManila); Console.WriteLine("MyTimeInNorw...
List of all tools and techniques used on my day to day software development.