Click or drag to resize

GameInfoParse Method

Parses the specified json.

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public static GameInfo Parse(
	string json
)

Parameters

json
Type: SystemString
The json.

Return Value

Type: GameInfo
A game info object
Examples
C#
string json = @"
{
   ""Region"": ""US"",
   ""Game"": ""Ages"",
   ""GameID"": 14129,
   ""Hero"": ""Link"",
   ""Child"": ""Pip"",
   ""Animal"": ""Dimitri"",
   ""Behavior"": ""BouncyD"",
   ""IsLinkedGame"": true,
   ""IsHeroQuest"": false,
   ""Rings"": -9222246136947933182
}";
GameInfo info = GameInfo.Parse(json);
See Also