c# - should I use "ref" to pass a collection (e.g. List) by reference to a method?

Viewed 42054

Should I use "ref" to pass a list variable by reference to a method?

Is the answer that "ref" is not needed (as the list would be a reference variable), however for ease in readability put the "ref" in?

3 Answers
Related