Scalien.ConfigStateHelpers.GetTable C# (CSharp) 메소드

GetTable() 공개 정적인 메소드

public static GetTable ( ConfigState configState, System.Int64 tableID ) : ConfigState.Table
configState ConfigState
tableID System.Int64
리턴 ConfigState.Table
        public static ConfigState.Table GetTable(ConfigState configState, Int64 tableID)
        {
            foreach (var table in configState.tables)
            {
                if (table.tableID == tableID)
                    return table;
            }

            return null;
        }