Table of Contents

Delegate Setter<TDeclaringType, TPropertyType>

Namespace
TypeShape.Abstractions
Assembly
TypeShape.dll

Delegate representing a property/field setter.

public delegate void Setter<TDeclaringType, TPropertyType>(ref TDeclaringType obj, TPropertyType value)

Parameters

obj TDeclaringType

The instance on which to set the value.

value TPropertyType

The value to be set to the instance.

Type Parameters

TDeclaringType

The declaring type on which to set a value.

TPropertyType

The property type of the underlying setter.