Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets a value that indicates whether the runtime optimizer is disabled.
Namespace: System.Diagnostics
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property IsJITOptimizerDisabled As Boolean
public bool IsJITOptimizerDisabled { get; }
public:
property bool IsJITOptimizerDisabled {
bool get ();
}
member IsJITOptimizerDisabled : bool with get
function get IsJITOptimizerDisabled () : boolean
Property Value
Type: System. . :: . .Boolean
true if the runtime optimizer is disabled; otherwise, false.
Remarks
A value of true enhances performance for runtime debugging, which can cause a decline in execution performance. A value of false enhances performance for execution. When IsJITOptimizerDisabled is set to false, stepping through code might result in a different behavior than when set to true because the compiler might reorder instructions or insert jumps to common code.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.