Capture Command Line arguments

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi all

I've seen some posts relating to capturing command line arguments inside
the CF, but they didn't really make sence (they were C# examples) - has
anyone done this in VB.net?

Thanks.
 
It's quite simple. Just change the method signature of Main to accept a
string instead of void.
 
That would be "to accept string array"

Chris Tacke said:
It's quite simple. Just change the method signature of Main to accept a
string instead of void.
 
Back
Top