Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DebuggableAttribute::IsJITOptimizerDisabled Property

 

Gets a value that indicates whether the runtime optimizer is disabled.

Namespace:   System.Diagnostics
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool IsJITOptimizerDisabled {
	bool get();
}

Property Value

Type: System::Boolean

true if the runtime optimizer is disabled; otherwise, false.

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
Available since 1.1
Return to top
Show:
© 2017 Microsoft