C# 클래스 Hd.QueryExtensions.OrderByTermCollection

상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: TargetProcess/Tp.HelpDesk 1 사용 예제들

공개 메소드들

메소드 설명
Add ( OrderByTerm value ) : void

Adds an instance of type OrderByTerm to the end of this OrderByTermCollection.

AddRange ( OrderByTerm items ) : void

Adds the elements of an array to the end of this OrderByTermCollection.

AddRange ( OrderByTermCollection items ) : void

Adds the elements of another OrderByTermCollection to the end of this OrderByTermCollection.

Contains ( OrderByTerm value ) : bool

Determines whether a specfic OrderByTerm value is in this OrderByTermCollection.

GetEnumerator ( ) : OrderByTermCollection.Enumerator

Returns an enumerator that can iterate through the elements of this OrderByTermCollection.

IndexOf ( OrderByTerm value ) : int

Return the zero-based index of the first occurrence of a specific value in this OrderByTermCollection

Insert ( int index, OrderByTerm value ) : void

Inserts an element into the OrderByTermCollection at the specified index

OrderByTermCollection ( ) : System

Initializes a new empty instance of the OrderByTermCollection class.

OrderByTermCollection ( OrderByTerm items ) : System

Initializes a new instance of the OrderByTermCollection class, containing elements copied from an array.

OrderByTermCollection ( OrderByTermCollection items ) : System

Initializes a new instance of the OrderByTermCollection class, containing elements copied from another instance of OrderByTermCollection

Remove ( OrderByTerm value ) : void

Removes the first occurrence of a specific OrderByTerm from this OrderByTermCollection.

this ( int index ) : OrderByTerm

Gets or sets the OrderByTerm at the given index in this OrderByTermCollection.

메소드 상세

Add() 공개 메소드

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. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of an array to the end of this OrderByTermCollection.
public AddRange ( OrderByTerm items ) : void
items OrderByTerm /// The array whose elements are to be added to the end of this OrderByTermCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of another OrderByTermCollection to the end of this OrderByTermCollection.
public AddRange ( OrderByTermCollection items ) : void
items OrderByTermCollection /// The OrderByTermCollection whose elements are to be added to the end of this OrderByTermCollection. ///
리턴 void

Contains() 공개 메소드

Determines whether a specfic OrderByTerm value is in this OrderByTermCollection.
public Contains ( OrderByTerm value ) : bool
value OrderByTerm /// The OrderByTerm value to locate in this OrderByTermCollection. ///
리턴 bool

GetEnumerator() 공개 메소드

Returns an enumerator that can iterate through the elements of this OrderByTermCollection.
public GetEnumerator ( ) : OrderByTermCollection.Enumerator
리턴 OrderByTermCollection.Enumerator

IndexOf() 공개 메소드

Return the zero-based index of the first occurrence of a specific value in this OrderByTermCollection
public IndexOf ( OrderByTerm value ) : int
value OrderByTerm /// The OrderByTerm value to locate in the OrderByTermCollection. ///
리턴 int

Insert() 공개 메소드

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. ///
리턴 void

OrderByTermCollection() 공개 메소드

Initializes a new empty instance of the OrderByTermCollection class.
public OrderByTermCollection ( ) : System
리턴 System

OrderByTermCollection() 공개 메소드

Initializes a new instance of the OrderByTermCollection class, containing elements copied from an array.
public OrderByTermCollection ( OrderByTerm items ) : System
items OrderByTerm /// The array whose elements are to be added to the new OrderByTermCollection. ///
리턴 System

OrderByTermCollection() 공개 메소드

Initializes a new instance of the OrderByTermCollection class, containing elements copied from another instance of OrderByTermCollection
public OrderByTermCollection ( OrderByTermCollection items ) : System
items OrderByTermCollection /// The OrderByTermCollection whose elements are to be added to the new OrderByTermCollection. ///
리턴 System

Remove() 공개 메소드

Removes the first occurrence of a specific OrderByTerm from this OrderByTermCollection.
public Remove ( OrderByTerm value ) : void
value OrderByTerm /// The OrderByTerm value to remove from this OrderByTermCollection. ///
리턴 void

this() 공개 메소드

Gets or sets the OrderByTerm at the given index in this OrderByTermCollection.
public this ( int index ) : OrderByTerm
index int
리턴 OrderByTerm