Takes a string containing a bool and converts it to a bool? type.
public static bool? StrToNullBool(this string value)
The string to convert to a bool?.
bool? x = "true".StrToNullBool();
bool? x = "".StrToNullBool();