public static bool TryParse(
ReadOnlySpan<char> value,
out NonSwitchBoolean result
)
Public Shared Function TryParse (
value As ReadOnlySpan(Of Char),
<OutAttribute> ByRef result As NonSwitchBoolean
) As Boolean
Dim value As ReadOnlySpan(Of Char)
Dim result As NonSwitchBoolean
Dim returnValue As Boolean
returnValue = NonSwitchBoolean.TryParse(value,
result)
public:
static bool TryParse(
ReadOnlySpan<wchar_t> value,
[OutAttribute] NonSwitchBoolean% result
)
This method uses the BooleanTryParse(ReadOnlySpanChar, Boolean) method to perform the conversion.