home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
io Programmo 40
/
IOPROG_40.ISO
/
SOFT
/
NETFrameworkSDK.exe
/
comsdk.cab
/
samples.exe
/
IntroDev
/
HelloWorld
/
vc
/
HelloVC.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-06-23
|
292 b
|
10 lines
#using <mscorlib.dll>
// Allow easy reference to classes in the System namespace
using namespace System;
// Global function called "main" is application's entry point function
void main() {
// Write text to the console
Console::WriteLine(L"Hello World using Managed C++!");
}