Hi,
I have a jaso object that i am getting from a API access. how do i deserialize the jason object in C# so that I can get the papameter values.
JavaScriptSerializer js = new JavaScriptSerializer();
bookshare bs = js.Deserialize<bookshare>(response);
string a = bs.version;
when i do this for string a i get null value?
how do i solve this
appreciate a reply
thanks