What is the difference between these two? I know how to do watched from C# and I understand what these are... but what are breakpoints?
Watches and Breakpoints?
Started by TcM, Jun 06 2008 10:00 AM
6 replies to this topic
#1
Posted 06 June 2008 - 10:00 AM
|
|
|
#2
Posted 07 June 2008 - 10:50 AM
Breakpoints are used for debugging. You set it on a certain line of code. Then, you run the project as normal. Just before the program executes that line of code, the IDE breaks the code into debugging mode, where you can execute the code line by line to see if everything it working the way you want it to.
#3
Posted 07 June 2008 - 03:52 PM
So they are just like watches?
#5
Posted 08 June 2008 - 01:22 PM
You set a breakpoint but instead you press F11 and move line by line with the code.
#6
Posted 09 June 2008 - 07:50 AM
A breakpoint is a line of code you want to stop at. A watch is a variable you want to inspect.


Sign In
Create Account


Back to top









