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

Add() public method

Adds an instance of type OrderByTerm to the end of this OrderByTermCollection.
public Add ( OrderByTerm value ) : void
value OrderByTerm /// The OrderByTerm to be added to the end of this OrderByTermCollection. ///
return void
		public virtual void Add(OrderByTerm value)
		{
			List.Add(value);
		}