从C#应用程序调试VC

从C#应用程序调试VC

本文介绍了从C#应用程序调试VC ++代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有C#应用程序引用VC ++ dll。

引用是通过接口(Interop.some.dll)



我必须通过运行C#应用程序调试VC ++代码我该如何实现呢?



我无法从VC ++代码附加进程,因为C#代码引用了Interop.Some。 dll因此它不会打扰调用VC ++代码.... !!!

I have C# application which is referencing VC++ dll.
The reference is through interface(Interop.some.dll)

I have to debug the VC++ code by running C# application how do i achieve this?

I cannot attach the process from VC++ code because the C# code is referencing Interop.Some.dll and hence it will not bother to call the VC++ code....!!!

推荐答案


这篇关于从C#应用程序调试VC ++代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 05:35