public static bool TryParse(
string? value,
out NonSwitchBoolean? result
)
Public Shared Function TryParse (
value As String,
<OutAttribute> ByRef result As NonSwitchBoolean
) As Boolean
Dim value As String
Dim result As NonSwitchBoolean
Dim returnValue As Boolean
returnValue = NonSwitchBoolean.TryParse(value,
result)
public:
static bool TryParse(
String^ value,
[OutAttribute] NonSwitchBoolean% result
)
This method uses the BooleanTryParse(String, Boolean) method to perform the conversion.