Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.Clear C# (CSharp) Method

Clear() public method

Removes all elements from the FieldInfoCollection.
Please refer to ArrayList.Clear for details.
/// The /// is read-only or has a fixed size.
public Clear ( ) : void
return void
		public virtual void Clear()
		{
			if (_data.Count == 0) return;
			Array.Clear(_data.Items, 0, _data.Count);
			_data.Count = 0;
		}