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