Castle.Core.ParameterModelCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether this collection contains the specified key.
public Contains ( object key ) : bool
key object The key.
return bool
		public bool Contains(object key)
		{
			return dictionary.Contains(key);
		}