home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 2005 June (DVD)
/
DPPRO0605DVD.iso
/
dotNETSDK
/
SETUP.EXE
/
netfxsd1.cab
/
HelloCS_cs_1________.3643236F_FC70_11D3_A536_0090278A1BB8
< 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
Text File
|
2001-08-21
|
381 b
|
12 lines
// Allow easy reference to classes in the System namespace
using System;
// This "class" exists only to house the application's entry-point function
class MainApp {
// Static method called "Main" is application's entry point function
public static void Main() {
// Write text to the console
Console.WriteLine("Hello World using C#!");
}
}