I\'ve looked at the different resources for other editions of visual studio but it\'s not clear to me how to call Main with an arg here
using System;
namesp
The arguments to main will be command line parameters. If running from within visual studio, you can setup the the
command line arguments
property in the "configuration properties" of your project.
For running it from command line, just invoke the exe file with parameters.
Path/to/YourProg.exe arg1 arg2