tags:

views:

446

answers:

4

Hi, I have an command line that uses arguments, I have no problem with this, but each time I want to test the application, I need to compile it, run the CMD, call the application with the parameters from the CMD, because I didn't find any solution that let me dynamically pass arguments to the console in Visual Studio Any idea about that? Thanks a lot!!

+6  A: 

Goto Project->Properties and click the Debug Tab. There is a section for command line arguments.

Mitch Wheat
+1  A: 

Check this link: link text

Alan
+2  A: 

Right click your project in VS -> Properties -> Debug tab

There is an area where you can specify command line arguments. When you debug your project, VS will start it up with these args.

Andy White
+2  A: 

Go to the project properties - Debug section, and under the Start Options heading there is a section for Command line arguments.

scottman666