Class SetModifier<T>
The given value ignored and the returns specified value returned.
Inheritance
SetModifier<T>
Assembly: cs.temp.dll.dll
Syntax
public class SetModifier<T> : IModifier<T>, IModifier
Type Parameters
Constructors
SetModifier(T, Int32)
Declaration
public SetModifier(T value, int priority = 0)
Parameters
Type |
Name |
Description |
T |
value |
|
Int32 |
priority |
|
Properties
Priority
Declaration
public int Priority { get; set; }
Property Value
Value
Declaration
public T Value { get; set; }
Property Value
Methods
Evaluate(T)
The given value ignored and the Value returned.
Declaration
public T Evaluate(T value)
Parameters
Type |
Name |
Description |
T |
value |
|
Returns
Implements