asd
asd

Reputation: 83

Parameters in Visual Studio c++ 2010

I just installed Visual Studio C++ 2010 Express (BTW. great ide). I have to make simple application, but I will open it from command prompt, and I need using parameters. So my question is: how to using parameters in Visual C++ .NET 2010 Express? I need one string and some int. It's special creator to do this or I must change code (if yes - how?)?

Best regards

Upvotes: 1

Views: 584

Answers (1)

Hans Passant
Hans Passant

Reputation: 942119

To debug your program with command line arguments, use Project + Properties, Debugging, Command Arguments setting.

Click around some more to get familiar with what's there, you'll need it sooner or later. Press F1 if things sound mysterious.

Upvotes: 4

Related Questions