FromBinary() 方法用於創建 DateTime 類的對象。
用法:
Function FromBinary(ByVal bin as Long ) as Date
參數:
- Bin:指定long值
返回值:它返回一個 DateTime 類的對象。
程序/源代碼:
下麵給出了演示 DateTime 類的 FromBinary() 方法的源代碼。給定的程序已成功編譯並執行。
'VB.NET program to demonstrate FromBinary() method of
'DateTime class.
Imports System
Module Module1
Sub Main()
Dim date1 As New DateTime(2020, 4, 27, 10, 20, 30)
Dim date2 As New DateTime()
Dim bin As Long = 0
bin = date1.ToBinary()
date2 = DateTime.FromBinary(bin)
Console.WriteLine("Binary value:{0}", bin)
Console.WriteLine("Date:{0}", date2)
End Sub
End Module
輸出:
Binary value:637235796300000000 Date:27-04-2020 10:20:30 Press any key to continue . . .
說明:
在上麵的程序中,我們創建了一個包含 Main() 函數的模塊 Module1。 Main() 函數是程序的入口點。
在 Main() 函數中,我們創建了 DateTime 類的對象,並使用 ToBinary() 方法將日期對象轉換為 64 位二進製,然後從 64 位二進製值中獲取日期對象。之後在控製台屏幕上打印日期。
相關用法
- VB.NET DateTime ToBinary()用法及代碼示例
- VB.NET DateTime Equals()用法及代碼示例
- VB.NET DateTime IsLeapYear()用法及代碼示例
- VB.NET DateTime Compare()用法及代碼示例
- VB.NET DateTime DaysInMonth()用法及代碼示例
- VB.NET LTrim()用法及代碼示例
- VB.NET CLng()用法及代碼示例
- VB.NET RTrim()用法及代碼示例
- VB.NET GetChar()用法及代碼示例
- VB.NET Array Reverse()用法及代碼示例
- VB.NET Array Resize()用法及代碼示例
- VB.NET CInt()用法及代碼示例
- VB.NET CULng()用法及代碼示例
- VB.NET CDbl()用法及代碼示例
- VB.NET LCase()用法及代碼示例
- VB.NET Array ConstrainedCopy()用法及代碼示例
- VB.NET Array Clear()用法及代碼示例
- VB.NET Array LastIndexOf()用法及代碼示例
- VB.NET String Join()用法及代碼示例
- VB.NET String IsNullorWhitSpace()用法及代碼示例
注:本文由純淨天空篩選整理自 VB.Net program to demonstrate the FromBinary() method of DateTime class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。