using System;
namespace csHelloWorld
{
///
/// Your basic Hello World
///
class HelloWorld
{
///
/// The main entry point for the Hello World Application.
///
[STAThread] // Don't worry about this it stands for single-threaded apartment
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.ReadLine();
// or... CWL("Welcome: \"" + args[0] + "\"");
// if(args.Length>0)
// {
// Console.WriteLine("Welcome: \"" + args[0] + "\"");
// Console.ReadLine();
// }
}
///
/// I did this method with the wizard
///
public void myWizardMethod(int p1, decimal p2)
{
}
// public static void CWL(string msg)
// {
// Console.WriteLine(msg);
// Console.WriteLine("");
// Console.Write("Press enter to continue...");
// Console.ReadLine();
// Console.WriteLine("---------------------------------------");
// Console.WriteLine("");
// }
}
}