Monday, February 12, 2018

c# - What's the difference between the 'ref' and 'out' keywords?




I'm creating a function where I need to pass an object so that it can be modified by the function. What is the difference between:



public void myFunction(ref MyClass someClass)


and



public void myFunction(out MyClass someClass)



Which should I use and why?


Answer



ref tells the compiler that the object is initialized before entering the function, while out tells the compiler that the object will be initialized inside the function.



So while ref is two-ways, out is out-only.


No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...