public static class MyClass
{
public static ref int GetReference()
ref int number = 6;
return ref number;
}
public static void Main(string[] args)
ref int localVariable = ref GetReference();
// use or assign localVariable