I have this JSON output from a web service.
{
"address": "173.194.67.1",
"country": "US",
"stateprov": "California",
"city": "Mountain View"
}
How Do I load it into a List typed as below using Newton Soft JSON library?
public class Item
{
public string address;
public string country;
public string stateprov;
public string city;
}
List items;
I am new to JSON.
thanks.
Iteminstance