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

◆ Contains()

bool System.Collections.Specialized.OrderedDictionary.Contains ( object key)
inline

Implements System.Collections.IDictionary.

Definition at line 279 of file OrderedDictionary.cs.

280 {
281 if (key == null)
282 {
283 throw new ArgumentNullException("key");
284 }
285 if (_objectsTable == null)
286 {
287 return false;
288 }
289 return _objectsTable.Contains(key);
290 }
virtual bool Contains(object key)
Definition Hashtable.cs:719

References System.Collections.Specialized.OrderedDictionary._objectsTable, System.Collections.Hashtable.Contains(), and System.key.

Referenced by System.ComponentModel.TypeDescriptor.PipelineFilter().