Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 128781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:41:24+00:00 2026-05-11T05:41:24+00:00

In C# the Main class has string[] args parameter. What is that for and

  • 0

In C# the Main class has string[] args parameter.

What is that for and where does it get used?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T05:41:25+00:00Added an answer on May 11, 2026 at 5:41 am

    From the C# programming guide on MSDN:

    The parameter of the Main method is a String array that represents the command-line arguments

    So, if I had a program (MyApp.exe) like this:

    class Program {   static void Main(string[] args)   {     foreach (var arg in args)     {       Console.WriteLine(arg);     }   } }

    That I started at the command line like this:

    MyApp.exe Arg1 Arg2 Arg3

    The Main method would be passed an array that contained three strings: ‘Arg1’, ‘Arg2’, ‘Arg3’.

    If you need to pass an argument that contains a space then wrap it in quotes. For example:

    MyApp.exe 'Arg 1' 'Arg 2' 'Arg 3'

    Command line arguments commonly get used when you need to pass information to your application at runtime. For example if you were writing a program that copies a file from one location to another you would probably pass the two locations as command line arguments. For example:

    Copy.exe C:\file1.txt C:\file2.txt
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working in a project that has two main parts: a class library
public class Test { public static void main(String[] args) { } } class Outer
public class doublePrecision { public static void main(String[] args) { double total = 0;
public class WrapperTest { public static void main(String[] args) { Integer i = 100;
class Program { static void Main(string[] args) { String value = Two; Type enumType
The following code public class GenericsTest2 { public static void main(String[] args) throws Exception
Take the following useless program: class Program { static void Main(string[] args) { IUnityContainer
In this Java code: public class Main { public static void main(String[] args) {
I have a container class that has a generic parameter which is constrained to
In the below program: class Main { static string staticVariable = Static Variable; string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.