Skip to content

Instantly share code, notes, and snippets.

@MartinZikmund
Created November 14, 2019 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinZikmund/374614ca26f920411fa762b26daa0e64 to your computer and use it in GitHub Desktop.
Save MartinZikmund/374614ca26f920411fa762b26daa0e64 to your computer and use it in GitHub Desktop.
var a = new ValueHolder();
var b = a;
b.SetValue(5);
Console.WriteLine($"a == {a.Value}");
Console.WriteLine($"b == {b.Value}");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment