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