Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Where do I enter command line arguments in Visual Studio 2010 so that they will be passed to the application I am developing?

I don't have the command line property under the debug folder of Configuration Properties that I am used to with other environments. I want to use command line arguments for my code.

How do I pass these arguments is what I need help with!

share|improve this question
1  
What do you mean? You can give command-line arguments to any application, though you'll need to write code in your Program.cs class that parses them and does stuff. – Anna Lear Jun 25 '11 at 4:47
umm ok, here is the deal, i have written programs for command line arguments in Java and C++ so i know i need to parse the arguments. JUst tell me how to take in the command line arguments through visual studio !!!! – Aadi Droid Jun 25 '11 at 4:48
1  
@Aadi: you need to work on the wording of this question. If all you want to do is pass your program command line arguments from visual studio, don't use the phrase "for my code". It's confusing. – Chris Jun 25 '11 at 4:52
@Aadi I'm sorry I misread your question. No need to be so demanding, though. Asking nicely is guaranteed to get you better help. – Anna Lear Jun 25 '11 at 4:56
1  
I was just miffed by the down vote, thanks for the help and I apologize for the tone. – Aadi Droid Jun 25 '11 at 5:01
show 1 more comment

2 Answers

up vote 9 down vote accepted

Something must be wrong with your Visual Studio if you don't see Command Line Arguments.

enter image description here

If you can't fix your Visual Studio, there is an option to add StartArguments element to your .csproj.user file:

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <PublishUrlHistory />
    <InstallUrlHistory />
    <SupportUrlHistory />
    <UpdateUrlHistory />
    <BootstrapperUrlHistory />
    <ErrorReportUrlHistory />
    <FallbackCulture>en-US</FallbackCulture>
    <VerifyUploadedFiles>false</VerifyUploadedFiles>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
    <StartArguments>Argument1 Argument2</StartArguments>   <<== THIS LINE
  </PropertyGroup>
</Project>
share|improve this answer

I would like just to add that menu shown on the picture could be accessed via Visual Studio 2010 Project Menu, then all the way down to the your project name properties.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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