How can you pass refernces in C#?
You can pass parameters by reference in C# using this syntax.
public void MyMethod(ref string myString) { }
You will then need to put ref before the value when passing it.