コード例 #1
0
ファイル: LuaVMDB.cs プロジェクト: mangodager/smartx-dotnet
        public int GetCount(string table)
        {
            int index = 0;

            if (currIndex.TryGetValue(table, out index))
            {
                return(index);
            }

            return(dbList.GetCount(table));
        }