StringExtensions.AsDateTime Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AsDateTime(String) |
Converts a string to a DateTime value. |
AsDateTime(String, DateTime) |
Converts a string to a DateTime value and specifies a default value. |
AsDateTime(String)
AsDateTime(String, DateTime)
Converts a string to a DateTime value and specifies a default value.
public static DateTime AsDateTime (this string value, DateTime defaultValue);
static member AsDateTime : string * DateTime -> DateTime
<Extension()>
Public Function AsDateTime (value As String, defaultValue As DateTime) As DateTime
Parameters
- value
- String
The value to convert.
- defaultValue
- DateTime
The value to return if value
is null or is an invalid value. The default is the minimum time value on the system.
Returns
The converted value.