I am just starting out with c# and c++ code. I am creating a file basically your everyday Hello World application for c#.
class Hello {
static void Main( ) {
System.Console.WriteLine("Hello World");
}
}
I am saving this as Hello.cs
My question is how do I run this and test in in SharpDevelop?