J Jon Skeet [C# MVP] Aug 3, 2004 #2 SK said: how can i get the arguments given in the command line? Click to expand... Use a Main method which takes an array of strings as its parameter. The arguments will be in there.
SK said: how can i get the arguments given in the command line? Click to expand... Use a Main method which takes an array of strings as its parameter. The arguments will be in there.
R Richard Grimes [MVP] Aug 9, 2004 #3 SK said: how can i get the arguments given in the command line? Click to expand... Environment.GetCommandLineArgs() or Environment.CommandLine Richard
SK said: how can i get the arguments given in the command line? Click to expand... Environment.GetCommandLineArgs() or Environment.CommandLine Richard