I have string of this kind
string JsonDemo = @"{'status':'OK','articles':[{'key1':'value'},'Maqbool']}";
I want to get values of status, articles, Key1 in seprate varriables in C# window Form application.
I know JSON.Net can be helpful for me but I am not getting what can be the exact code for doing it.