1 2 3 4 5 6 7 8 9
namespace I2.Loc.SimpleJSON; public static class JSON { public static JSONNode Parse(string aJSON) { return JSONNode.Parse(aJSON); } }