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

Remove() 공개 메소드

Removes the first occurrence of the specified FieldInfo from the FieldInfoCollection.
Please refer to ArrayList.Remove for details.
/// The /// is read-only or has a fixed size.
public Remove ( FieldInfo value ) : void
value FieldInfo /// The object to remove /// from the . /// This argument may be a null reference. ///
리턴 void
		public void Remove(FieldInfo value)
		{
			int index = IndexOf(value);
			if (index >= 0) RemoveAt(index);
		}