Conversions.ToDate 方法

定义

将指定的对象转换为 DateTime 值。

重载

ToDate(Object)

将对象转换为 DateTime 值。

ToDate(String)

将字符串转换为 DateTime 值。

ToDate(Object)

Source:
Conversions.vb
Source:
Conversions.vb
Source:
Conversions.vb

将对象转换为 DateTime 值。

public:
 static DateTime ToDate(System::Object ^ Value);
public static DateTime ToDate (object Value);
public static DateTime ToDate (object? Value);
static member ToDate : obj -> DateTime
Public Shared Function ToDate (Value As Object) As DateTime

参数

Value
Object

要转换的对象。

返回

该对象的 DateTime 值。

适用于

ToDate(String)

Source:
Conversions.vb
Source:
Conversions.vb
Source:
Conversions.vb

将字符串转换为 DateTime 值。

public:
 static DateTime ToDate(System::String ^ Value);
public static DateTime ToDate (string Value);
public static DateTime ToDate (string? Value);
static member ToDate : string -> DateTime
Public Shared Function ToDate (Value As String) As DateTime

参数

Value
String

要转换的字符串。

返回

该字符串的 DateTime 值。

适用于