PropertySetter<TValue, TIndex> Delegate |
Defines the signature of methods implementing the Set
semantic of a property with a single index parameter.
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp (in PostSharp.dll) Version: 6.7.12.0 (6.7.12.0)
C#
public delegate void PropertySetter<TValue, TIndex>( TIndex index, TValue value )
Parameters
- index
- Type: TIndex
Index. - value
- Type: TValue
The property value.
Type Parameters
- TValue
- Property value type.
- TIndex
- Property index type.