C# Класс Hd.QueryExtensions.WhereTermCollection

Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Add ( WhereTerm val ) : int

Adds a with the specified value to the .

AddRange ( WhereTerm val ) : void

Copies the elements of an array to the end of the .

AddRange ( WhereTermCollection val ) : void

Adds the contents of another to the end of the collection.

Contains ( WhereTerm val ) : bool

Gets a value indicating whether the contains the specified .

CopyTo ( WhereTerm array, int index ) : void

Copies the values to a one-dimensional instance at the specified index.

GetEnumerator ( ) : WhereClauseEnumerator

Returns an enumerator that can iterate through the .

IndexOf ( WhereTerm val ) : int

Returns the index of a in the .

Insert ( int index, WhereTerm val ) : void

Inserts a into the at the specified index.

Remove ( WhereTerm val ) : void

Removes a specific from the .

WhereTermCollection ( ) : System

Initializes a new instance of .

WhereTermCollection ( WhereTerm val ) : System

Initializes a new instance of containing any array of objects.

WhereTermCollection ( WhereTermCollection val ) : System

Initializes a new instance of based on another .

this ( int index ) : WhereTerm

Represents the entry at the specified index of the .

Описание методов

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

Adds a with the specified value to the .
public Add ( WhereTerm val ) : int
val WhereTerm The to add.
Результат int

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

Copies the elements of an array to the end of the .
public AddRange ( WhereTerm val ) : void
val WhereTerm /// An array of type containing the objects to add to the collection. ///
Результат void

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

Adds the contents of another to the end of the collection.
public AddRange ( WhereTermCollection val ) : void
val WhereTermCollection /// A containing the objects to add to the collection. ///
Результат void

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

Gets a value indicating whether the contains the specified .
public Contains ( WhereTerm val ) : bool
val WhereTerm The to locate.
Результат bool

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

Copies the values to a one-dimensional instance at the specified index.
/// is multidimensional. /// -or- /// The number of elements in the is greater than /// the available space between and the end of /// . /// is . is less than 's lowbound.
public CopyTo ( WhereTerm array, int index ) : void
array WhereTerm The one-dimensional that is the destination of the values copied from .
index int The index in where copying begins.
Результат void

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

Returns an enumerator that can iterate through the .
public GetEnumerator ( ) : WhereClauseEnumerator
Результат WhereClauseEnumerator

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

Returns the index of a in the .
public IndexOf ( WhereTerm val ) : int
val WhereTerm The to locate.
Результат int

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

Inserts a into the at the specified index.
public Insert ( int index, WhereTerm val ) : void
index int The zero-based index where should be inserted.
val WhereTerm The to insert.
Результат void

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

Removes a specific from the .
is not found in the Collection.
public Remove ( WhereTerm val ) : void
val WhereTerm The to remove from the .
Результат void

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

Initializes a new instance of .
public WhereTermCollection ( ) : System
Результат System

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

Initializes a new instance of containing any array of objects.
public WhereTermCollection ( WhereTerm val ) : System
val WhereTerm /// A array of objects with which to intialize the collection ///
Результат System

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

Initializes a new instance of based on another .
public WhereTermCollection ( WhereTermCollection val ) : System
val WhereTermCollection /// A from which the contents are copied ///
Результат System

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

Represents the entry at the specified index of the .
is outside the valid range of indexes for the collection.
public this ( int index ) : WhereTerm
index int The zero-based index of the entry to locate in the collection.
Результат WhereTerm