BF2Statistics.Database.QueryBuilder.OrderByClause.OrderByClause C# (CSharp) Method

OrderByClause() public method

Constructor
public OrderByClause ( string field )
field string The field being ordered
        public OrderByClause(string field)
        {
            this.FieldName = field;
            this.SortOrder = Sorting.Ascending;
        }

Same methods

OrderByClause::OrderByClause ( string field, Sorting order )
OrderByClause