Any succinct explanations?
Also Answered in: http://stackoverflow.com/questions/135234/difference-between-ref-and-out-parameters-in-net
|
|
Any succinct explanations? Also Answered in: http://stackoverflow.com/questions/135234/difference-between-ref-and-out-parameters-in-net
|
|||
|
|
closed as exact duplicate by ChrisW, DrJokepu, Jeff Yates, George Stocker Feb 5 at 20:14 |
|
|
For the caller:
For the method:
So:
|
||||||||||||||
|
|
|
From the MSDN article that Alex mentions,
So to sum up, inside the method you can consider ref parameters to be set, but not out parameters - you must set these. Outside the method they should act the same. |
||
|
|
|
|
Most succinct way of viewing it: ref = inout out = out |
||||||
|
|
|
Check out this Jon Skeet article about params in c#: |
|||
|
|
|
|
Ref and out parameter passing modes are used to allow a method to alter variables passed in by the caller. The difference between ref and out is subtle but important. Each parameter passing mode is designed to apply to a slightly different programming scenario. The important difference between out and ref parameters is the definite assignment rules used by each. The caller of a method which takes an out parameter is not required to assign to the variable passed as the out parameter prior to the call; however, the callee is required to assign to the out parameter before returning. source: MSDN |
||
|
|
|
|
Duplicate question: http://stackoverflow.com/questions/135234/difference-between-ref-and-out-parameters-in-net |
||
|
|
|
|
See this article on MSDN. They both accomplish subtly different things, really. |
|||
|
|