Skip to content

Instantly share code, notes, and snippets.

@EIrwin
Last active August 29, 2015 14:08
Show Gist options
  • Save EIrwin/10725e177d7ea23cc4c4 to your computer and use it in GitHub Desktop.
Save EIrwin/10725e177d7ea23cc4c4 to your computer and use it in GitHub Desktop.
ChangeAge ByRef Method Implementation
private static void ChangeAge(ref Person person,int newAge)
{
person = new Person(); //We CAN do this!
person.Age = newAge;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment