VS2010を起動します。[新しいプロジェクトの作成]をクリックします。次のコードを入力します。f5を押します。正常に動作します。しかし、F9またはコード行を右クリックして[ブレークポイント]-> [ブレークポイントの挿入]を選択してブレークポイントを設定しようとしても、何も起こりません。
プロジェクトのプロパティはDebugに設定されています。
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();
}
}
}