.NET debugger for x64
I would like to implement a Mini IDE in my program to write additional modules. I want to include in the Mini IDE the debugger. That's all I was able find about the creation of the debugger. As I understand ICorDebug does not support x64 but my application is wri开发者_开发知识库tten for x64, and so modules should also be written under x64. What can I use to debug the modules under x64?
I think you are confusing the fact that mixed mode (interop) debugging with x64 doesn't work with ICorDebug supporting x64. You can definitely debug x64 bit apps with a managed debugger based on ICorDebug. Perhaps I am misunderstanding your question.
精彩评论