for example:
int x = 1; int y = x; y = 3; Debug.WriteLine(x.ToString());
Is it any reference operator inste
You can use pointers like in C
int x = 1; unsafe { int* y = &x; *y = 3; } Debug.WriteLine(x.ToString());
(Note you have to compile with the unsafe flag)