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!

link|improve this question

75% accept rate
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
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
feedback

1 Answer

up vote 6 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>
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.