Convert the value of the current DateTime object to UTC in C#


To convert the value of the current DateTime object to Coordinated Universal Time (UTC), the code is as follows −

Example

 Live Demo

using System;
public class Demo {
   public static void Main() {
      DateTime d = new DateTime(2019, 12, 11, 7, 11, 25);
      Console.WriteLine("Date = {0}", d);
      DateTime res = d.ToUniversalTime();
      Console.WriteLine("String representation = {0}", res);
   }
}

Output

This will produce the following output −

Date = 11/11/2019 7:11:25 AM
String representation = 11/11/2019 7:11:25 AM

Example

Let us now see another example −

 Live Demo

using System;
public class Demo {
   public static void Main() {
      DateTime localDate, universalDate;
      String str = "11/11/2019 4:10:55";
      localDate = DateTime.Parse(str);
      universalDate = localDate.ToUniversalTime();
      Console.WriteLine("Local time = {0} ", localDate);
      Console.WriteLine("Universal time = {0} ", universalDate);
   }
}

Output

This will produce the following output −

Local time = 11/11/2019 4:10:55 AM
Universal time = 11/11/2019 4:10:55 AM

Updated on: 09-Dec-2019

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements