I am working on WPF app and I have get the NewsFeed from the Facebook so I want to Deserialize and show to the some formated or plain text so how I can do this.
I have Deserialize as Dictionary<string, object> values = JsonConvert.DeserializeObject<Dictionary<string, object>>(json);
but that will be give me only two rows of list of some newsfeed like as it is show how I can segrigate it or seperate it as Name = Value and all kind of things..
Thank you..