create .exe
I have created a simple program 'hello world'. The code is generated automatically by visual studio 2003 and is below: // This is the main project file for VC++ application project // generated using an Application Wizard. #include
#using
<mscorlib.dll>using
namespace System;int
_tmain(){
// TODO: Please replace the sample code below with your own.Console::WriteLine(S"Hello World2");
system("PAUSE");
return 0;}
-
Then, I built the soluction. So I tried to execute this file in another computers, but I got different messages error.
What's wrong?
Help me.

