Enum CompoundEvalMode
- Namespace
- ICSharpCode.Decompiler.IL
- Assembly
- ICSharpCode.Decompiler.dll
public enum CompoundEvalMode : byte
Fields
EvaluatesToNewValue = 1
The compound.assign instruction will evaluate to the new value. This mode is used for compound assignments and pre-increment/decrement.
EvaluatesToOldValue = 0
The compound.assign instruction will evaluate to the old value. This mode is used only for post-increment/decrement.