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

◆ IsCompatibleKey()

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

Definition at line 801 of file SortedDictionary.cs.

802 {
803 if (key == null)
804 {
805 throw new ArgumentNullException("key");
806 }
807 return key is TKey;
808 }

References System.key.

Referenced by System.Collections.Generic.SortedDictionary< TKey, TValue >.Contains(), and System.Collections.Generic.SortedDictionary< TKey, TValue >.Remove().