DateTime.FromBinary(Int64)方法用於反序列化64位二進製值,並重新創建原始的序列化DateTime對象。
用法: public static DateTime FromBinary (long dateData);
Here, it takes a 64-bit signed integer that encodes the Kind property in a 2-bit field and the Ticks property in a 62-bit field.
返回值:此方法返回與ToBinary()方法序列化的DateTime對象等效的對象。
異常:如果dateData小於MinValue或大於MaxValue,則此方法將提供ArgumentException。
以下示例程序旨在說明DateTime.FromBinary(Int64)方法的用法:
示例1:
// C# program to demonstrate the
// DateTime.FromBinary(Int64) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of DateTime
DateTime date1 = new DateTime(2010, 1, 1,
8, 0, 15);
// getting a 64-bit signed integer
// using ToBinary() method
long binLocal = date1.ToBinary();
// cnverting 64-bit into DateTime format
// using FromBinary() method
DateTime date2 = DateTime.FromBinary(binLocal);
// Display the date1
System.Console.WriteLine("DateTime before "
+ "operation: {0:y} {0:dd}",date1);
// Display the date2
System.Console.WriteLine("\nDateTime after"
+ " operation: {0:y} {0:dd}", date2);
}
catch (ArgumentOutOfRangeException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
DateTime before operation: 2010 January 01 DateTime after operation: 2010 January 01
示例2:對於ArgumentOutOfRangeException
// C# program to demonstrate the
// DateTime.FromBinary() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// converting 64-bit into DateTime format
// using FromBinary() method
DateTime date = DateTime.FromBinary(-100000000000000000);
// Display the date
System.Console.WriteLine("\nDateTime: + {0:y} {0:dd} ", date);
}
catch (ArgumentException e)
{
Console.WriteLine("The resulting dateData"
+ " is less than the MinValue ");
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
The resulting dateData is less than the MinValue Exception Thrown: System.ArgumentException
參考:
相關用法
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 DateTime.FromBinary() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。