debug Console Application

  • Thread starter Thread starter John Grandy
  • Start date Start date
J

John Grandy

When debugging a Console Application in Visual Studio 2003, how to specify
the command line arguments ?

static void Main(string[] args)
 
John said:
When debugging a Console Application in Visual Studio 2003, how to specify
the command line arguments ?

static void Main(string[] args)

Go to the Project Properties (right click on project and select Properties,
or Project->Properties on the menu). Click Configuration Properties to
expand and select Debugging. There, under Start Options, you can specify
command line arguments.
 
Back
Top