Is it possible to get a value out of a literal string in c#? -
i have literal string contains details of json array need extract value in c#
the string looks following:
"{\"field1\":[],\"field2\":333,\"field3\":\"string\"....
now field2 field wish in isntance, have no idea how in c#
check out newtonsoft.json
package on nuget.org, can parse json , can retrieve keys name
Comments
Post a Comment