To pass arguments to Main method in Visual Studio we can go to the following path:
Right-click on project → Properties → Debug tab → Application arguments
We can write down new arguments there:

And we can use our added arguments with args[] and the appropriate index e.g. args[0], args[1]:

