How can you pass refernces in C#?
private void functionName (ref Type variableName) { }
To Call it
functionName(ref variable);