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