此方法用於將當前DateTime對象的值轉換為本地時間。
用法: public DateTime ToLocalTime ();
返回值:此方法返回一個對象,其對象的Kind屬性為Local,其值是與當前DateTime對象的值等效的本地時間;如果轉換後的值太大而不能由DateTime對象表示,則返回MaxValue;如果轉換後的值太大,則返回MinValue值太小而無法表示為DateTime對象。
以下示例程序旨在說明DateTime.ToLocalTime()方法的使用
示例1:
// C# program to demonstrate the
// DateTime.ToLocalTime()
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// creating object of DateTime
DateTime date = new DateTime(2011, 1,
1, 4, 0, 15);
// Converts the value of the current
// DateTime object to local time.
// using ToLocalTime() method;
DateTime value = date.ToLocalTime();
// Display the TimeSpan
Console.WriteLine("local time is {0}", value);
}
}
輸出:
local time is 01/01/2011 04:00:15
示例2:
// C# program to demonstrate the
// DateTime.ToLocalTime()
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// creating object of DateTime
DateTime date = DateTime.Now;
// Converts the value of the current
// DateTime object to local time.
// using ToLocalTime() method;
DateTime value = date.ToLocalTime();
// Display the TimeSpan
Console.WriteLine("local time is {0}", value);
}
}
輸出:
local time is 02/11/2019 05:13:37
參考:
相關用法
- C# Uri.IsBaseOf(Uri)用法及代碼示例
- C# Random.Next()用法及代碼示例
- C# Uri.ToString()用法及代碼示例
- C# Uri.IsWellFormedOriginalString()用法及代碼示例
- C# Uri.GetHashCode()用法及代碼示例
- C# Math.Log()用法及代碼示例
- C# Uri.FromHex()用法及代碼示例
- C# Uri.IsHexDigit()用法及代碼示例
- C# Queue.Contains()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 DateTime.ToLocalTime() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。