home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 March
/
PCWorld_2001-03_cd.bin
/
Software
/
TemaCD
/
C#ed
/
Setup.exe
/
Comments.cs
< prev
next >
Wrap
Text File
|
2000-08-23
|
273b
|
18 lines
// C# supports C++-style comments
/* C# also supports
C-style comments */
using System;
class Loops
{
public static void Main() // Entry point
{
Console.WriteLine("Your program starts here");
Console.WriteLine("Your program ends here");
}
}