我想在这里做一些非常简单的事情。 我使用Visual Studio 2012.我创建了一个名为BLA的简单visual Studio类。整个代码如下。
using System;
using System.Collections.Generic;
using System.Text;
namespace BLA
{
public class Class1
{
public void hit() {
Console.Write("sdf");
}
}
}
我构建它没有错误。我在" Console.Write(" sdf")"中放了一个断点。然后尝试附加到iexplore.exe进程。 它附加的过程,但我收到一个错误 断点当前不会被击中。没有为文档加载符号。
我尝试在google和stackoverflow中搜索我得到了很多答案,但没有一个解决了我的问题。
知道怎么做?
答案 0 :(得分:2)
你在构建什么样的应用程序,你提到你附加到iexplore.exe它是一个web应用程序吗?
你总是可以尝试System.Diagnostics.Debugger.Break()
给你一个调试选项。
答案 1 :(得分:1)
您必须创建类Class1
的对象,并从该对象调用方法hit()
。