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:
C/C++ Source or Header  |  2000-06-23  |  292 b   |  10 lines

  1. #using <mscorlib.dll>
  2.  
  3. // Allow easy reference to classes in the System namespace
  4. using namespace System;
  5.  
  6. // Global function called "main" is application's entry point function
  7. void main()    {
  8.     // Write text to the console
  9.     Console::WriteLine(L"Hello World using Managed C++!");    
  10. }