06
08
2007
Hello world!
Posted by: jlerossignol in Uncategorized, tags: C#, Info Tech, Programming, TasksWelcome to Edublogs.org. This is your first post. Edit or delete it, then start blogging.
Since this focused on Games Programming in C#, the correct form would be….
using System;
using System.Collections.Generic;
using System.Text;namespace CA1_Hello_World
{
class Program
{
static void Main(string[] args)
{
// First program for Games Programming
// The System.Console.WriteLine() outputs the text to the screen
// "Hello World" is the text outputed to the screen
System.Console.WriteLine("Hello World");
// This line waits for a <enter> key to be pressed
// The result of this is that you can see the output on the screen
// without it disappearing too quickly to read
System.Console.ReadLine();
}
}
}
Entries (RSS)
October 7th, 2007 at 8:34 pm
“Hello World!” is the standard opening example of code for any programming langauge, and I feel it’s the best way to open a blog about Games Programming with C#.NET