Newtonsoft.Json.JsonReaderException does not recognize left square bracket “[”
问题 I'm trying to use DeserializeObject from the NewtonSoft library but I encoutered a problem that bothers me a lot. I'm quite new with that Library so to understand it better I took a look at the following example from the official website. Using that ressource, I modified it to fit my needs, here is my class : public class Project { [JsonProperty ("team")] public string Team{ get; set; } [JsonProperty("details")] public string Details { get; set;} } Here is the code : Project project = new