IDkmClrDecompiler.Decompile(DkmModuleInstance) Method

Definition

Decompiles the code for a module into C# and creates a new portable PDB with this source embedded. All modules that share this symbol file will begin using these updated symbols.

public:
 void Decompile(Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ moduleInstance);
public void Decompile (Microsoft.VisualStudio.Debugger.DkmModuleInstance moduleInstance);
abstract member Decompile : Microsoft.VisualStudio.Debugger.DkmModuleInstance -> unit
Public Sub Decompile (moduleInstance As DkmModuleInstance)

Parameters

moduleInstance
DkmModuleInstance

[In] The Module Instance class represent a code bundle (ex: dll or exe) which is loaded into a particular process at a particular location. Module Instance objects are 1:1 with the execution environment's notion of a code bundle. For example, in native code, Module Instance objects are 1:1 with base address.

Applies to