Delegate Indexer<T, TIndicies, TValue>.Getter
Represents property getter.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public delegate TValue Getter(in T this, in TIndicies index);
Parameters
| Type | Name | Description |
|---|---|---|
| T | this | The object whose property value will be returned. |
| TIndicies | index | Index values for indexed properties. |
Returns
| Type | Description |
|---|---|
| TValue | The property value. |