NameValueCollection 썸네일형 리스트형 Json 데이터를 NameValueCollection으로 변환하기... Json 데이터로 구성되어있는 데이터를 NameValueCollection으로 변환하여 참조하기 위하여 사용... 참조 예제일 뿐... ^^ 기록해 두지 않으면 잊어 먹어싸서... # 참조 using System.Collections.Generic; using System.Collections.Specialized; using System.Web.Script.Serialization; public NameValueCollection FromJsonData(string jsonData) { JavaScriptSerializer jsData = new JavaScriptSerializer(); Dictionary dictionary = jsData.Deserialize(jsonData); NameValueC.. 더보기 이전 1 다음