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

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

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