An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
When I run the debugger it says 'Unable to start
program: consoleapplication1.exe'
That message usually means that there were build errors.
If a compile error or a link error occurs then no exe
will be created. So naturally it can't find the program
to start it.
Always do a Build and check for success before trying to
Run the program being built. Fix all errors and warnings
from the Build and only try Run when you have a clean build.
- Wayne