Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created December 30, 2017 11:28
Show Gist options
  • Save Ibro/327c7482b7ecba4a52b1ef02e30a15e9 to your computer and use it in GitHub Desktop.
Save Ibro/327c7482b7ecba4a52b1ef02e30a15e9 to your computer and use it in GitHub Desktop.
public class RefLocals
{
private int _age = 15;
private int[] _numbers = { 3, 2, 5, 4 };
public void ReferenceToField()
{
ref int someReferenceToAge = ref _age;
someReferenceToAge = 45;
ref int secondElement = ref _numbers[1];
secondElement = 33;
}
public void PrintAge()
{
Console.WriteLine($"Age: {_age}");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment