VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/datetime-touniversaltime-method-in-c-sharp/

⇱ DateTime.ToUniversalTime() Method in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

DateTime.ToUniversalTime() Method in C#

Last Updated : 11 Jul, 2025
This method is used to convert the value of the current DateTime object to Coordinated Universal Time (UTC).
Syntax: public DateTime ToUniversalTime (); Return Value: This method returns an object whose Kind property is Utc, and whose value is the UTC equivalent to the value of the current DateTime object, or MaxValue if the converted value is too large to be represented by a DateTime object, or MinValue if the converted value is too small to be represented by a DateTime object.
Below programs illustrate the use of DateTime.ToUniversalTime() Method: Example 1:
Output:
UTC is 01/01/2010 04:00:15
Example 2:
Output:
UTC of 01/03/2010 04:00:15 is 01/03/2010 04:00:15
UTC of 01/05/2010 04:00:15 is 01/05/2010 04:00:15
Reference:
Comment
Article Tags:

Explore