Signals the Common Language Infrastructure (CLI) to inform the debugger that a break point has been tripped.
Assembly: mscorlib (in mscorlib.dll)
Public Shared ReadOnly Break As OpCode
public static readonly OpCode Break
public: static initonly OpCode Break
static val Break: OpCode
The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
|
Format |
Assembly Format |
Description |
|---|---|---|
|
01 |
break |
inform a debugger that a breakpoint has been reached. |
No evaluation stack behaviors are performed by this operation.
The break instruction is for debugging support. It signals the CLI to inform the debugger that a break point has been tripped. It has no other effect on the interpreter state.
The break instruction has the smallest possible instruction size enabling code patching with a break point and generating minimal disturbance to the surrounding code.
The break instruction can trap to a debugger, do nothing, or raise a security exception. The exact behavior is implementation-defined.
The following Emit method overload can use the break opcode:
-
ILGenerator.Emit(OpCode)
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
