Skip to content
/ GJson Public
forked from lis355/GJson

User-friendly json library with serilization

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.meta
Notifications You must be signed in to change notification settings

Redgard/GJson

 
 

Repository files navigation

GJson

NuGet version

User-friendly json C# library with serilization on .NET 3.0

  • Easy load and dump
  • Easy manipulating, no need to create objects yourself with many "new"
  • Support serilization

Load from string

var json = JsonValue.Parse("{\"a\" : 12, \"b\":[]}");

Pretty print to string

var str = json.ToStringIdent();

//{
//	"a" : 12,
//	"b" : []
//}

Create empty and fill

var json = new JsonValue();
json["a"] = 15;
json["b"][0] = "first";
json["b"][1] = "second";
json["c"]["some"] = 3.14;

About

User-friendly json library with serilization

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.meta

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.7%
  • Other 0.3%