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

TrimToSize() public method

Sets the capacity to the actual number of elements in the FieldInfoCollection.
Please refer to ArrayList.TrimToSize for details.
/// The /// is read-only or has a fixed size.
public TrimToSize ( ) : void
return void
		public virtual void TrimToSize()
		{
			_data.SetCapacity(_data.Count);
		}