This topic has not yet been rated - Rate this topic

DebuggableAttribute Constructor (Boolean, Boolean)

Initializes a new instance of the DebuggableAttribute class, using the specified tracking and optimization options for the just-in-time (JIT) compiler.

Namespace:  System.Diagnostics
Assembly:  mscorlib (in mscorlib.dll)
new : 
        isJITTrackingEnabled:bool * 
        isJITOptimizerDisabled:bool -> DebuggableAttribute

Parameters

isJITTrackingEnabled
Type: System.Boolean

true to enable debugging; otherwise, false.

isJITOptimizerDisabled
Type: System.Boolean

true to disable the optimizer for execution; otherwise, false.

This constructor sets the properties IsJITTrackingEnabled and IsJITOptimizerDisabled.

An isJITTrackingEnabaled parameter value of true causes the runtime to track information important to the debugger during code generation; a value of false results in no tracking, but does not prevent debugging. This parameter has no effect in the .NET Framework version 2.0. In version 2.0, JIT tracking information, the Microsoft intermediate language (MSIL) offset to the native-code offset within a method, is always generated.

An isJITOptimizerDisabled parameter value of true optimizes for debugging; a value of false optimizes for execution.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.