vote up 5 vote down star
1

What is the difference between an argument & a parameter in C#?

Are they the same thing?

flag

51% accept rate
8  
an argument ensues when two programmers cannot agree on the parameters. – Steven A. Lowe Nov 2 at 21:11

4 Answers

vote up 27 vote down check

Well, neither keyword is present in the language, so the question is somewhat vague. The best that can be done is to look how each term is used in C# language specification (1.6.6.1 "Parameters"):

Parameters are used to pass values or variable references to methods. The parameters of a method get their actual values from the arguments that are specified when the method is invoked.

So, "parameters" refer to names, and "arguments" refer to values bound to those names. E.g.:

void Foo(int x, int y); // x and y are parameters
Foo(1, 2);  // 1 and 2 are arguments
link|flag
beat me by a few seconds. – Joel Coehoorn Nov 2 at 21:11
Fantastic answer, thankyou very much. – Goober Nov 2 at 21:14
1  
Also called 'Formal Parameters' and 'Actual Parameters' by some. – Matt Brunell Nov 9 at 21:50
vote up 0 vote down

In the context of functions yes, they are the same, sometimes if you are talking about passing data to executables such as MyApp.exe /a:value /b:somethingelse, this might be refered to as arguments

link|flag
vote up 0 vote down

Typically, I refer to command-line arguments, as arguments. Arguments to a method or function I typically call parameters.

However, this isn't convention and both can be used interchangeably without people getting confused.

link|flag
vote up 0 vote down

they are used interchangeably but anyway to be accurate check this article

link|flag

Your Answer

Get an OpenID
or

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