Hi everyone i have a problem with my json serealization. I\'m using the Json.NET package under Unity: I\'m searching to make a Database, editable on my application and store
Best way would be to configure JSON.Net to replace the default values by
JsonSerializerSettings jsSettings = new JsonSerializerSettings { ObjectCreationHandling = ObjectCreationHandling.Replace, }; JsonConvert.DeserializeObject(jsonString, jsSettings);