Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsCompatibleKey()

static bool System.Collections.ObjectModel.ReadOnlyDictionary< TKey, TValue >.IsCompatibleKey ( object key)
inlinestaticprivate

Definition at line 327 of file ReadOnlyDictionary.cs.

328 {
329 if (key == null)
330 {
331 throw new ArgumentNullException("key");
332 }
333 return key is TKey;
334 }

References System.key.

Referenced by System.Collections.ObjectModel.ReadOnlyDictionary< TKey, TValue >.Contains().