Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.Contains C# (CSharp) 메소드

Contains() 공개 메소드

Determines whether the FieldInfoCollection contains the specified FieldInfo element.
Please refer to ArrayList.Contains for details.
public Contains ( FieldInfo value ) : bool
value FieldInfo /// The object to locate /// in the . /// This argument may be a null reference. ///
리턴 bool
		public bool Contains(FieldInfo value)
		{
			return (IndexOf(value) >= 0);
		}