Пример #1
0
    public static bool ReadStringListList(Dictionary <string, object> inDict, string inListName, ref List <List <string> > refValue)
    {
        if (inDict.ContainsKey(inListName) == true)
        {
            refValue = JSONTools.ReadStringListList(inDict[inListName]);
            return(true);
        }

        return(false);
    }