  | Utf8StringTryParse(String, IFormatProvider, Utf8String) Method | 
Tries to parse a string into a value.
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static bool TryParse(
	string? s,
	IFormatProvider? provider,
	out Utf8String result
)
Public Shared Function TryParse ( 
	s As String,
	provider As IFormatProvider,
	<OutAttribute> ByRef result As Utf8String
) As Boolean
public:
static bool TryParse(
	String^ s, 
	IFormatProvider^ provider, 
	[OutAttribute] Utf8String^% result
)
static member TryParse : 
        s : string * 
        provider : IFormatProvider * 
        result : Utf8String byref -> bool Parameters
- s  String
 - The string to parse.
 - provider  IFormatProvider
 - An object that provides culture-specific formatting information about s.
 - result  Utf8String
 - When this method returns, contains the result of successfully parsing s or an undefined value on failure.
 
Return Value
Boolean if 
s was successfully parsed; otherwise, 
.
Implements
IParsableTSelfTryParse(String, IFormatProvider, TSelf)
See Also