2. System.Net.Json.dll 추가
3. using System.Net.Json; 추가
4.
JsonObjectCollection col = new JsonObjectCollection();col.Add(new JsonStringValue("one", "1"));col.Add(new JsonStringValue("two", "2"));
col.ToString(); 의 내용
{
"bank": "1",
"two": "2"
}
5. 다시 사용
JsonTextParser parser = new JsonTextParser();JsonObject obj = parser.Parse(strResponse);JsonObjectCollection col = (JsonObjectCollection)obj;String one= (String)col["one"].GetValue();