Hi guys

I have to process command line arguments of my application, so, in the Main() method I insert the args() parameter:

VB Code:
  1. Sub Main(args() as string)
  2.     dim sArg as string
  3.  
  4.     For Each sArg in args()
  5.         ....
  6.      Next
  7. 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