コード例 #1
0
        public static object Parse(Type type, string json)
        {
            object result = TJson.Deserialize(type, json);
            IJson  jObj   = result as IJson;

            if (jObj != null)
            {
                jObj.AfterDeserialize();
            }
            return(result);
        }