I see that this question is very old, but this is the solution I used for the same problem, and it seems to require a bit less code than the others.
As @Maloric mentioned in his answer to this question:
var jo = JObject.Parse(myJsonString);
To use JObject, you need the following in your class file
using Newtonsoft.Json.Linq;