JsonValueTryParse(String, JsonValue) Method
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public static bool TryParse(
string s,
out JsonValue value
)
Public Shared Function TryParse (
s As String,
<OutAttribute> ByRef value As JsonValue
) As Boolean
public:
static bool TryParse(
String^ s,
[OutAttribute] JsonValue% value
)
static member TryParse :
s : string *
value : JsonValue byref -> bool
- s String
- A string that will be read for the JsonValue content.
- value JsonValue
- When this method returns , the result of the parsing;
otherwise, Undefined. This parameter is passed uninitialized.
Boolean if the parsing was successful; otherwise,
.