I have an application MyApp.exe
. This app uses an assembly MyAssembly1.dll
which itself refers to MyAssembly2.dll
. Within MyAssembly2
, I have a class MyClass
that has a method MyMethod
. This method is called after user go through several dialog etc.
If I launch this application from within Windbg, is there some way I can put a breakpoint on this method? The problem is that I don't know when the MyAssembly2
is loaded by CLR
and this method get JITted?