Hi guys
I have to process command line arguments of my application, so, in the Main() method I insert the args() parameter:
VB Code:
Sub Main(args() as string) dim sArg as string For Each sArg in args() .... Next End sub
When I'll launch the executable file l'll set arguments using - character, for example c:\Test.exe -c.
But how to set arguments in VB.NET to debug my application?
Thanks


Reply With Quote
