Castle.Facilities.NHibernateIntegration.Util.FieldInfoCollection.Sort C# (CSharp) Метод

Sort() публичный Метод

Sorts the elements in the entire FieldInfoCollection using the IComparable implementation of each element.
Please refer to ArrayList.Sort() for details.
/// The is read-only. /// /// One or more elements in the /// do not implement the interface. ///
public Sort ( ) : void
Результат void
		public virtual void Sort()
		{
			if (_data.Count > 1)
				Array.Sort(_data.Items, 0, _data.Count);
		}

Same methods

FieldInfoCollection::Sort ( IComparer comparer ) : void
FieldInfoCollection::Sort ( int index, int count, IComparer comparer ) : void