No, Effects on entry of point of your application
if you are creating the EXE like MyDemoApp.exe
class Program
{
static void Main(string[] args)
{
foreach (var arg in args)
{
Console.WriteLine(arg);
}
}
}
Command line like this:
MyDemoApp.exe agrument1 agrument2 agrument3
if you are not passing the string[] agrs then you can not paas the arguments in command line.
but Exe will run fine.