System.Reflection.Emit (mscorlib.dll) | enum |
This enumeration is used by
the
OpCode.FlowControl property. It describes how the
instruction alters the flow of control. Next
indicates a normal flow of control, while
Cond_Branch indicates a conditional branch
instruction. The Meta value provides information
about a subsequent instruction.
public enum FlowControl {
Branch = 0,
Break = 1,
Call = 2,
Cond_Branch = 3,
Meta = 4,
Next = 5,
Phi = 6,
Return = 7,
Throw = 8
}
Hierarchy
System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable, System.IConvertible)
FlowControl
Returned By
OpCode.FlowControl
|