Delegate MemberGetter<T, TValue>
Represents instance field/property getter.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public delegate TValue MemberGetter<T, out TValue>(in T this);
Parameters
| Type | Name | Description |
|---|---|---|
| T | this | This parameter. |
Returns
| Type | Description |
|---|---|
| TValue | Field value. |
Type Parameters
| Name | Description |
|---|---|
| T | Declaring type. |
| TValue | Member type. |