can anyone suggest me the exact use of out keyword as a paramter, and how its connected for returning multiple values from the function, as in this POST, i am confused with out variable with normal variable. can anyone help me for this.
|
|
This is frequently confusing, and I think the MSDN documentation actually is a bit "clear only if already known". That is, it is correct, but it really only makes sense if you already understand the concept. Here's how I think of it. A regular parameter makes a copy of the value of the argument. When you say:
That is just like you said:
A ref or out parameter make an alias for an existing variable. When you say
That is the same as saying:
Summing up: "out" and "ref" just mean "do not make a new variable; rather, temporarily make a second name for an existing variable". Is that now clear? UPDATE: I did not say what the difference between "out" and "ref" is. The difference is simple. On the "caller" side, a "ref" must be a definitely assigned variable before the method is called. An "out" need not be. On the "callee" side, a "ref" may be read before it is written to, but an "out" must be written to before it is read. Also, an "out" must be written to before control leaves the method normally. |
|||||||
|
|
MSDN documentation already does a great job explaining this:
|
|||
|
|
It's very frequently used in a pattern that "tries" to get a value, something like:
|
|||
|
|
|
|
|||
|
|
|
http://msdn.microsoft.com/en-us/library/t3c3bfhx(v=vs.80).aspx
|
|||
|
|
|
Ok, let look at the usual pattern for this kind of function - the One possible answer is using an
Remark:
Or you might consider using a |
|||
|
|
|
In most languages c# included you can pass values in 2 ways, by value, by reference. by value gives the method a copy of your data, so changing the data wont have any effect on the original data by reference essentially gives the method the memory address of your data, so if the method modifies the data, it changes the original. Out is a special type of ref, in that you do not need to initialise the variable before you call the method, it can be called with null being passed in. and it MUST be set by the method. Another way you can think of it (from the outside code's point of view) is: val = read only ref = read/write out = write only. |
|||||||||||||
|
