I need to deserialize some JSON objects. I tried to use Tiny-json library, but it\'s too slow. I tried to use Newtonsoft.Json, but it fails in webplayer with this error:
Unity 5.3 added Native support of Json Serializer. It is faster than others.
JsonUtility.ToJson to convert a class to Json.
JsonUtility.ToJson
JsonUtility.FromJson to convert Json back to class.
JsonUtility.FromJson
For complete example and information regarding json arrays, see
Serialize and Deserialize Json and Json Array in Unity