DateTimeOffset.FromUnixTimeMilliseconds(Int64)方法用於將表示從1970-01-01T00:00:00Z開始經過的毫秒數的Unix時間轉換為DateTimeOffset值。
用法: public static DateTimeOffset FromUnixTimeMilliseconds (long milliseconds);
在這裏,它花費一個Unix時間,表示為從1970-01-01T00:00:00Z(世界標準時間1970年1月1日,上午12:00)以來經過的毫秒數。對於此日期之前的Unix時間,其值為負。
返回值:此方法返回一個日期和時間值,該值表示與Unix時間相同的時刻。
異常:如果毫秒數小於-62,135,596,800,000或毫秒數大於253,402,300,799,999,則此方法將提供ArgumentOutOfRangeException。
以下示例程序旨在說明DateTimeOffset.FromUnixTimeMilliseconds(Int64)方法的用法:
示例1:
// C# program to demonstrate the
// DateTimeOffset.FromUnixTimeMilliseconds(Int64)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// Converts a Unix time expressed as
// the number of milliseconds that
// have elapsed since 1970-01-01T00:00:00Z
// to a DateTimeOffset value.
// instance using AddYears() method
DateTimeOffset value =
DateTimeOffset.FromUnixTimeMilliseconds(100000);
// 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 01/01/1970 00:01:40 +00:00
示例2:對於ArgumentOutOfRangeException
// C# program to demonstrate the
// DateTimeOffset.FromUnixTimeMilliseconds(Int64)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// Converts a Unix time expressed as the
// number of milliseconds that have elapsed
// since 1970-01-01T00:00:00Z to a DateTimeOffset
// value instance using AddYears() method
DateTimeOffset value =
DateTimeOffset.FromUnixTimeMilliseconds(253502300799999);
// Display the time
Console.WriteLine("DateTimeOffset is {0}", value);
}
catch (ArgumentOutOfRangeException e)
{
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
Exception Thrown: System.ArgumentOutOfRangeException
參考:
相關用法
- 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大神的英文原創作品 DateTimeOffset.FromUnixTimeMilliseconds() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。