Castle.Core.ParameterModelCollection.Contains C# (CSharp) Метод

Contains() публичный Метод

Determines whether this collection contains the specified key.
public Contains ( object key ) : bool
key object The key.
Результат bool
		public bool Contains(object key)
		{
			return dictionary.Contains(key);
		}