I'm writing a C console application, and I want to parse command line arguments in visual studio while debugging, I know how to do it in eclipse but can't find this option in visual studio. So where can I find this option?

link|improve this question

1  
I have visual studio 2008 – Vladp Mar 11 '11 at 17:43
feedback

2 Answers

up vote 4 down vote accepted

In your project, go to:

Project->Project name Properties

alternately hit Alt+F7, or, in solution explorer, right click on your project and choose "properties" from the drop down menu.

then, go to:

Configuration Properties->Debugging

You can pass command line arguments in on the line that says Command Arguments

link|improve this answer
Thanks - I didn't know about alt-f7 ! – Martin Beckett Mar 11 '11 at 18:07
@Martin Beckett - I know somebody out there would appreciate it ;) – Nate Mar 11 '11 at 18:41
feedback

It should be in the Debug tab on the project properties. There will be an option for the command line arguments. The exact position varies according to the version you're using and you don't say which version you have (otherwise I could look and list the name/tab/etc verbatim).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.