Search Results

1
vote

In c# , when sending a parameter to a method, when should we use “ref” and when “out” and when without any of them?

In addition to Colin's detailed answer, you could also use out parameters to return multiple values from one method call. See for example the method below which returns 3 values. st …