Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.TrimToSize C# (CSharp) Méthode

TrimToSize() public méthode

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
Résultat void
		public virtual void TrimToSize()
		{
			_data.SetCapacity(_data.Count);
		}