Example #1
0
    public static bool ReadStringList(Dictionary <string, object> inDict, string inStringName, ref List <string> refValue)
    {
        if (inDict.ContainsKey(inStringName) == true)
        {
            refValue = JSONTools.ReadStringList(inDict[inStringName]);
            return(true);
        }

        return(false);
    }
Example #2
0
 public List <string> toStrList()
 {
     return(JSONTools.ReadStringList(obj));
 }