home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / HelloVC_cpp_1________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2001-08-21  |  307 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(S"Hello World using Managed Extensions for C++!");    
  10. }