[]
Initializes a new instance of the C1DelegateList<T> class.
public C1DelegateList(int count, Func<int, T> select)
| Type | Name | Description |
|---|---|---|
| int | count | The number of items. |
| Func<int, T> | select | The select function used to get the items. |
Initializes a new instance of the C1DelegateList<T> class.
public C1DelegateList(IReadOnlyList<T> list)
| Type | Name | Description |
|---|---|---|
| IReadOnlyList<T> | list | The list. |
Initializes a new instance of the C1DelegateList<T> class.
public C1DelegateList(IList list)
| Type | Name | Description |
|---|---|---|
| IList | list | The list. |
Initializes a new instance of the C1DelegateList<T> class.
public C1DelegateList(Func<int> getCount, Func<int, T> select)
| Type | Name | Description |
|---|---|---|
| Func<int> | getCount | Function that returns the number of items. |
| Func<int, T> | select | The select function used to get the items. |