I'm using Visual Studio 2012 for Windows Phone 7 and this is my first app. When I'm trying to deserialize a JSON string with JSON.NET I always get this weird error :
Missing method : r rlib, Version=3.7.0.0, Culture=neutral, PublicKeyToken=969DB8053D3322AC.System.Threading.Monitor.
Here is a snippet of my code that deserialize my JSON string:
public void DeserializeFeed(string feed)
{
JsonSerializer ser = new JsonSerializer();
//JsonReader jr = new JsonTextReader(new StreamReader(feed));
Post deserializedPost = JsonConvert.DeserializeObject<Post>(feed);
}
I post here debug step by step mode, to give more accurate Informations:
Can anyone help me please ? Hope I'm clear !