How to open multiples files in VS2019 in different 2 tab and debug it?
How to open multiples files in VS2019 in different 2 tab and debug it?
What do you mean by "multiple files"? Multiple source files in the same project, multiple projects, or something else?
What type of files?
You can open each file in the editor by double clicking the file name in the project explorer window. Each will open in a new tab.
You can put a break point at the first executable statement in each function.
You then start execution in debug mode by pressing F5. As each function is entered, the system will stop and display the file at the current break point.
7 people are following this question.