I'm looking for a clear, concise and accurate answer.
Ideally as the actual answer, although links to good explanations welcome.
This also applies to VB.Net, but the keywords are different - ByRef and ByVal.
|
|
|
By default (in C#), passing an object to a function actually passes a copy of the reference to that object. Changing the parameter itself only changes the value in the parameter, and not the variable that was specified.
Using Both
Edit: As dp points out, the difference between |
||||
|
|
One additional note about ref vs. out: The distinction between the two is enforced by the C# compiler. The CLR does not distinguish between between out and ref. This means that you cannot have two methods whose signatures differ only by an out or ref
|
||||
|
|
|
|
||||
|
|
|
One of my own questions at stackoverflow handles this topic too. Basically it comes down to:
but that's really the most basic answer you can give, as it is a little more complex than it is stated here |
||||
|
|
|
This article "Parameter passing in C#" is the most complete explanation I've read so far. |
|||
|
|