Метод DateTime.ToUniversalTime () в C #

Опубликовано: 7 Марта, 2022

Этот метод используется для преобразования значения текущего объекта DateTime в универсальное координированное время (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.

Ниже приведены программы, иллюстрирующие использование метода DateTime.ToUniversalTime () :

Пример 1:

Example 2:

// C# program to demonstrate the
// DateTime.ToUniversalTime()
// Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling check() method
        check(new DateTime(2010, 1,
                     3, 4, 0, 15));
  
        check(new DateTime(2010, 1,
                     5, 4, 0, 15));
    }
  
    public static void check(DateTime date)
    {
  
        // getting UTC from DateTime
        // using ToUniversalTime() method;
        DateTime value = date.ToUniversalTime();
  
        // Display the ShortTime
        Console.WriteLine("UTC of {0} is {1}",
                                 date, value);
    }
}
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

Ссылка:

  • https://docs.microsoft.com/en-us/dotnet/api/system.datetime.touniversaltime?view=netframework-4.7.2
C#