[02/03 Resolved] Processing command line argouments
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
Re: [02/03 Resolved] Processing command line argouments
you could also use Environment.GetCommandArgs too