Skip to content

Instantly share code, notes, and snippets.

@haileys
Created October 30, 2010 06:49
Show Gist options
  • Save haileys/655039 to your computer and use it in GitHub Desktop.
Save haileys/655039 to your computer and use it in GitHub Desktop.
void Foo(ref string a)
{
a = "hi";
}
void Bar()
{
var x = "bye";
Foo(ref x);
Console.WriteLine(x); // "hi"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment