1
我有ServicedComponent,我已經將它作爲參考(調試模式)添加到我的測試代碼中,它具有與dll相同的文件夾中的pdb文件。步入/調試ServicedComponent
我正在使用VS 2010.我已選中啓用非託管代碼調試,並在兩個項目中都啓用Visual Studio託管過程。兩個項目都是本地的。
using(Gatherer nag = new Gatherer())
{
try
{
nag.test(); ==> it won't step in test function.
我能夠但是,當我嘗試介入時,它不會介入,它會跳到下一行。
我還需要做些什麼來調試此ServicedComponent?