In Visual Studio, how can I exit the current project and load another? Something like reloading?
i.e when i'm executiing my project(window application) i need to close the current exe and load another instance of the exe file.
In Visual Studio, how can I exit the current project and load another? Something like reloading?
i.e when i'm executiing my project(window application) i need to close the current exe and load another instance of the exe file.
Simply open another project. Visual Studio will automatically close the current project when opening a new one.
I'm still not entirely sure that's what you're asking for though. Here are a couple of related actions and the way to achieve them
I think you're looking for the restart action.
View|Toolbars|Debug will show you the toolbar; the square blue icon with an arrow pointing left is what you're after.
On my system the keyboard shortcut is Ctrl+Shift+F5.
If you mean how to restart the program currently being debugged, then use the command "Debug -> Restart" or press "Ctrl+Shift+F5".