Building one of my first console apps.
This console app will run some stored procedures I m defining. I would like to be able to pass in parameter values via the command line.
Is there any way to pass in a name value pair? For example:
myConsoleApp.exe sproc_GetLastActives, @LastActiveDate - 11/20/2009
I know how to retreive the parameter values, but I m noticing that the args[] are split if I put in a / or a ,. How can I pass in name value pair?
Thanks!