Convert::ToDateTime Method (Object)
Converts the value of the specified object to a DateTime object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::Object
An object that implements the IConvertible interface, or nullptr.
Return Value
Type: System::DateTimeThe date and time equivalent of the value of value, or a date and time equivalent of DateTime::MinValue if value is nullptr.
| Exception | Condition |
|---|---|
| FormatException | value is not a valid date and time value. |
| InvalidCastException | value does not implement the IConvertible interface. -or- The conversion is not supported. |
For the conversion to succeed, the runtime type of the value parameter must be either a DateTime or a String, or value must be nullptr. Otherwise, the method throws an InvalidCastException. In addition, if value is a string, it must contain a valid representation of a date and time value in the current culture or a FormatException is thrown.
The return value is the result of invoking the IConvertible::ToDateTime method of the underlying type of value.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.