Interface IIndexedItem<T>
Interface representing an item with an index.
Namespace:Extend
Assembly:Extend.dll
Syntax
public interface IIndexedItem<T>
Type Parameters
Name | Description |
---|---|
T | The type of the item |
Properties
| Improve this Doc View SourceIndex
Gets the index of the item.
Declaration
int Index { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the item. |
Item
Gets the item.
Declaration
T Item { get; }
Property Value
Type | Description |
---|---|
T | The item. |