J Joerg Jooss Feb 26, 2005 #2 Mark said: How can I use (get) command line parameters in my application? Click to expand... They are passed into Main as string array: static void Main(string[] args) { ... } You can also obtain them using Environment.GetCommandLineArgs(). Cheers,
Mark said: How can I use (get) command line parameters in my application? Click to expand... They are passed into Main as string array: static void Main(string[] args) { ... } You can also obtain them using Environment.GetCommandLineArgs(). Cheers,
C Cor Ligthert Feb 26, 2005 #3 Mark, Can you use this sample I once made, it gives you back the ip information from Google from the commandline It is in this newsgroup message. http://groups-beta.google.com/group/microsoft.public.dotnet.languages.csharp/msg/7eaf44a76d821dc8 I hope this helps? Cor
Mark, Can you use this sample I once made, it gives you back the ip information from Google from the commandline It is in this newsgroup message. http://groups-beta.google.com/group/microsoft.public.dotnet.languages.csharp/msg/7eaf44a76d821dc8 I hope this helps? Cor