コード例 #1
0
ファイル: DictionaryHelper.cs プロジェクト: gitshuaidong/MJ
    /** Helper functions for serializing from a dictionary save */

    public static bool ReadJSONList(Dictionary <string, object> inDict, string inStringName, ref List <object> refValue)
    {
        if (inDict.ContainsKey(inStringName) == true)
        {
            refValue = JSONTools.ReadJSONList(inDict, inStringName);

            return(true);
        }

        return(false);
    }