Getting command line arguments outside of Main() method?

  • Thread starter Thread starter Jens Weiermann
  • Start date Start date
J

Jens Weiermann

Hi,

is there any way to get a hand at the command line arguments passed to my
app OUTSIDE the main function?

Thanks!
Jens
 
System.Environment.CommandLine property or
System.Environment.GetCommandLineArgs method.
 
Hi Stephany,
System.Environment.CommandLine property or
System.Environment.GetCommandLineArgs method.

thanks - that's what I was looking for...

Regards,
Jens
 
Back
Top