This is supported by default, and the arguments will appear in the args array passed to your program.
public static void Main(string[] args)
If you say
App.exe Hello World What Up
At the command line, you will get an args array as follows:
[0] = "Hello" [1] = "World" [2] = "What's" [3] = "Up"
It is up to you to determine which arguments you want, how they will be formatted, etc.
Tejs source share