using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Reflection; using System.Text; namespace Nii.JSON { /// /// Summary description for JsonFacade. /// public sealed class JsonFacade { /// /// Parse JSON formatted string and return a dictionary /// /// /// public static Dictionary fromJSON(string sJSON) { JSONObject jsob = new JSONObject(sJSON); Dictionary idict = jsob.getDictionary(); return idict; } } }