C# Sample Programs
Simple C# programming codes
Thursday, November 11, 2010
Display 1 to 10
class Program
{
static void Main(string[] args)
{
for (int i=1; i <=10; i++)
{
Console.WriteLine(i);
}
}
}
No comments:
New comments are not allowed.
Newer Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
New comments are not allowed.