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);
		}
	}