Takes a string containing a DateTime and converts it to a DateTime? type.
public static DateTime? StrToNullDateTime(this string value)
The string to convert to a DateTime?.
DateTime? x = "1 Jan 2000".StrToNullDateTime();DateTime? x = "".StrToNullDateTime();