I use it to pass by reference. Can I overpass this too??

for ex:
void Change(ref string xy) { xy="hi";}

string x = "hello"
Change(ref x);
//now x= "hi"';