NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Convert.ToDateTime (Object)

Returns the specified Object converted to DateTime format.

[Visual Basic]
Overloads Public Shared Function ToDateTime( _
   ByVal value As Object _
) As DateTime
[C#]
public static DateTime ToDateTime(
   object value
);
[C++]
public: static DateTime ToDateTime(
   Object* value
);
[JScript]
public static function ToDateTime(
   value : Object
) : DateTime;

Parameters

value
The number to be converted.

Return Value

The object as a DateTime type.

Remarks

Implementation is the same as Parse.

See Also

Convert Class | Convert Members | System Namespace | Convert.ToDateTime Overload List