public static TestEnumTable GetTestEnumTable(TestEnumTable.eID key) { if (instance._data_TestEnumTable.ContainsKey(key)) { return(_instance._data_TestEnumTable[key]); } return(null); }
public static bool TryGetTestEnumTable(TestEnumTable.eID key, out TestEnumTable val) { return(_instance._data_TestEnumTable.TryGetValue(key, out val)); }