Hd.QueryExtensions.OrderByTermCollection.Insert C# (CSharp) Method

Insert() public method

Inserts an element into the OrderByTermCollection at the specified index
public Insert ( int index, OrderByTerm value ) : void
index int /// The index at which the OrderByTerm is to be inserted. ///
value OrderByTerm /// The OrderByTerm to insert. ///
return void
		public virtual void Insert(int index, OrderByTerm value)
		{
			List.Insert(index, value);
		}