blog games developers documentation portfolio gallery

More in this category:

Import()

To import any JSON, you can call the class methods of SimpleJsonImporter.

// import a JSON string
myHashtable = SimpleJsonImporter.Import(jsonString);
As easy as that.

The class methods are:

Hashtable Import(string json)


Simply import an json string hierarchy. The import is case sensitive and the full file will be read

Hashtable Import(string json, bool caseInsensitive)


if caseInsensitive is true, all tag names will be converted to lowercase. If false, the result is the same as the function Hashtable Import(string json)






follow us