Interface ITechEnumeration<T>
Представляет перечень сущностей.
Inherited Members
Namespace: Ascon.Vertical.Core
Assembly: Ascon.Vertical.Core.dll
Syntax
public interface ITechEnumeration<T> : IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T | Тип сущности. |
Properties
Count
Возвращает количество элементов в перечне.
Declaration
int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
this[int]
Возвращает элемент перечня по индексу.
Declaration
T this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | Индекс элемента. |
Property Value
| Type | Description |
|---|---|
| T |
Methods
Contains(T?)
Проверяет наличие элемента в перечне.
Declaration
bool Contains(T? item)
Parameters
| Type | Name | Description |
|---|---|---|
| T | item | Проверяемый элемент. |
Returns
| Type | Description |
|---|---|
| bool |
|