我启动 VS 2010。单击创建新项目。键入以下代码。按 f5。运行良好。但是当我尝试通过 F9 或右键单击一行代码并选择 Breakpoint -> Insert Breakpoint 设置断点时,没有任何反应。
项目属性设置为调试。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SetBreakPoints
{
class Program
{
static void Main(string[] args)
{
int a = 7;
int b = 5;
a = a - b;
b = b + a;
a = b - a;
Console.WriteLine("Value of a is {0} and value of b is {1}", a, b);
Console.ReadKey();
}
}
}