Code:
private char[] getSeparators(ref string[] varfiles)
Code:
private char[] getSeparators(string[] varfiles)
As far as I know, the first piece of code will pass varfiles by reference so that varfiles will be changed by getSeparators when control is passed back to the calling method.
What gets passed to getSeperators by the second piece of code?
Comment