I wish to directly modify a variable\'s value outside of a method from inside it. Pointers are the way, correct?
How?
Use ref. E.g. Foo(ref int i) will allow Foo to change the value of i via the reference to the caller's value.
ref
Foo(ref int i)
Foo
i