Reputation: 26919
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?
Upvotes: 1
Views: 175
Reputation: 176946
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
Upvotes: 1
Reputation: 39029
One runs the program until it steps out of the current function, the other shows you the call stack.
Upvotes: 2