Skip to content

evertonandrade/yojson-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YoJson: A simple JSON parser

The lib that parsing a json string to an object in C#

Example

A simple example on how to parse JSON from a string literal.

const string json = """{ "number": 42, "string": "yes", "list": ["for", "sure", 42] }""";
var obj = YoJson.Parse(json);