Is it possible to maintain a reference to a value type so that when changes are made to it my code can see them?
Example: i am building a 2D camera for XNA and i want to be able to give it a reference to an arbitrary vector2 so that i don't have to have a special interface or something that everything has to implement. Is this possible?