Delegate Indexer<T, A, V>.Setter
Represents property setter.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public delegate void Setter(in T this, in A index, V value);
Parameters
| Type | Name | Description |
|---|---|---|
| T | this | The object whose property value will be set. |
| A | index | The property value of the specified object. |
| V | value | The new property value. |