Ejemplo n.º 1
0
        public static bool FromJSONString(this IParsableJSONListElement inElement, string inJSONString)
        {
            if (string.IsNullOrEmpty(inJSONString) == false)
            {
                Dictionary <string, object> JSONDict = MiniJsonTRExtensions.dictionaryFromJson(inJSONString);
                if (JSONDict != null)
                {
                    return(inElement.FromDict(JSONDict));
                }
            }

            return(false);
        }