This is a point mark in your code where execution will take a break (and no, it will not really break your code, do not worry). Keeping a breakpoint from Visual Studio or Express editions, it's as simple to left-click in the gutter, which is on the left side of your code. Once you click it, you will get a bright, red circle as a reward - the marks of this cycle where you can stop the debugger while executing your application. You keep a better watch for yourself, and to see the effect, we will use the following code:
namespace DebugTest { class Program { static void Main(string[] args) { int a = 5, b = 8, c = 233; int d = a + c - b; Console.WriteLine(d); } } }a breakpoint by clicking in the left gutter - your IDE should now look something like this:
0 comments:
Post a Comment