Name

FlowControl

Synopsis

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

Get C# in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.