I began organizing my code to day into seperarate .cs files, and in order to allow the methods that work with the UI to continue to do so I would create the .cs code under t
When you want to allow paramaters to be specified from the command, they must look like this:
[STAThread] static void Main(params string[] paramaters) {
you cannot specify more than one paramater, otherwise this will also cause the error reported above.