I\'m writing a tool to read JSON files. I\'m using the NewtonSoft tool to deserialize the JSOn to a C# class. Here\'s an example fragment:
\"name\": \"Fubar
Use the JsonProperty attribute to indicate the name in the JSON. e.g.
JsonProperty
[JsonProperty(PropertyName = "binding type")] public string BindingType { get; set; }