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