Share via


IsJITOptimizerDisabled Property

[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

See Also

Reference

DebuggableAttribute Class

System.Diagnostics Namespace