Is there a native library that would allow me to parse a Json formatted string? Say, for example, I had the string:
string inp = "{ \"title\": \"My Title\" }";
Is there a class where I can construct an object using that Json formatted string and find the value for title?
Edit: My app is a console application.