예제 #1
0
 //--------------------------------------------------------------------------------------------------------------------------------
 static int ToInternalKey(TKey key)
 {
     return(BitConvert.Enum32ToInt(key));
 }
예제 #2
0
 //================================================================================================================================
 // 전용
 //================================================================================================================================
 static KeyValuePair <int, TValue> ToInternalPair(KeyValuePair <TKey, TValue> pair)
 {
     return(new KeyValuePair <int, TValue>(BitConvert.Enum32ToInt(pair.Key), pair.Value));
 }