1

我试图在这里做一些非常简单的事情。我使用 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 中搜索我得到了很多答案,但没有一个能解决我的问题。

知道怎么做吗?

4

2 回答 2

2

你正在构建什么样的应用程序,你提到你附加到 iexplore.exe 它是一个 web 应用程序吗?

你总是可以尝试System.Diagnostics.Debugger.Break()给你一个调试选项。

于 2012-12-06T12:35:18.453 回答
1

您必须创建类的对象Class1并从该对象调用方法hit()

于 2012-12-06T12:53:04.813 回答