So I am new to C# and I am having difficulty understanding out. As opposed to just returning something from a function
out
using System; class Retur
Only time I tend to use out is when I need multiple things returned from a single method. Out lets you avoid wrapping multiple objects into a class for return. Check out the example at the Microsoft Out page.
Out