When I put a break point in my program and execution stops there, then what is the difference between clicking on Step Out in Debug window and viewing the call stack?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
here i have wrote about call stack window in debug mode might help you to get info about cal stack window : Help yourself in Debugging by using Call Stack and Immediate Window
call Stack window : you will get information about the method get called, what is parameter value, line no of the method in file, is it external call or internal, programming language in which method written.
Step Out on the Debug menu to resume running on the target. This command executes the rest of the current function and breaks when the function return is completed.
Step Out is related when you are debugging inside a method. If you press the Shift – F11 within the current method, then the execution will complete the execution of the method and will pause at the next statement from where it called.
Mastering Debugging in Visual Studio 2010 – A Beginner’s Guide