How would I go upon detecting input for a console application in C#?
Let\'s say for example I want the console application to start up by writing: Welcome To Food Hu
I recommend Richard Lopes' Command Line Arguments Parser. It is powerful and very simple to use. Also, it accepts various ways of specifying the arguments, for example:
Example Code:
static void Main(string[] args)
{
Arguments cmdline = new Arguments(args);
Console.WriteLine(cmdline["name"]);
}