InterviewSolution
Saved Bookmarks
| 1. |
What Is The Syntax Used To Set A Breakpoint? |
|
Answer» A breakpoint can be set EITHER on the basis of method name or specific number of line. To set a breakpoint on method, the FOLLOWING syntax is USED: - stop in CLASSNAME.MethodName To set a breakpoint on specific line, the following syntax is used: - stop at Classname:LineNumber A breakpoint can be set either on the basis of method name or specific number of line. To set a breakpoint on method, the following syntax is used: - stop in Classname.MethodName To set a breakpoint on specific line, the following syntax is used: - stop at Classname:LineNumber |
|