I have a Json string which contains space in its property name. Now how I should do that. I searched and found the following answer.
public jsonClass
{
[JsonProperty(Name="Space Property")]
public string SpaceProperty {get; set; }
}
But it seems like I've to use json.net library to achieve this.
Is there a way that I can achieve the same thing with the use of wp8 inbuilt datacontract json serializer dll?
Thank you.