当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# DateTimeOffset.ToLocalTime()用法及代码示例


DateTimeOffset.ToLocalTime方法用于将当前的DateTimeOffset对象转换为代表本地时间的DateTimeOffset对象。

用法: public DateTimeOffset ToLocalTime ();

返回值:此方法返回一个对象,该对象表示转换为本地时间的当前DateTimeOffset对象的日期和时间。


以下示例程序旨在说明DateTimeOffset.ToLocalTime()方法的使用:

示例1:

// C# program to demonstrate the 
// DateTimeOffset.ToLocalTime() 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        try { 
  
            // creating object of  DateTimeOffset 
            DateTimeOffset offset = new DateTimeOffset(2007, 
                    6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0)); 
  
            // Converts the current DateTimeOffset object 
            // to a DateTimeOffset object that represents  
            // the local time instance using the  
            // ToLocalTime() method 
            DateTimeOffset value = offset.ToLocalTime(); 
  
            // Display the time 
            Console.WriteLine("DateTimeOffset is {0}", value); 
        } 
  
        catch (ArgumentOutOfRangeException e)  
        { 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
输出:
DateTimeOffset is 06/01/2007 12:55:00 +00:00

示例2:

// C# program to demonstrate the 
// DateTimeOffset.ToLocalTime() 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // creating object of  DateTimeOffset 
        DateTimeOffset offset = new DateTimeOffset(2027, 
                6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0)); 
  
        // Converts the current DateTimeOffset object 
        // to a DateTimeOffset object that represents  
        // the local time instance using the  
        // ToLocalTime() method 
        DateTimeOffset value = offset.ToLocalTime(); 
  
        // Display the time 
        Console.WriteLine("DateTimeOffset is {0}", value); 
    } 
}
输出:
DateTimeOffset is 06/01/2027 12:55:00 +00:00

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 DateTimeOffset.ToLocalTime() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。