Developing Java with Eclipse, it's easy to move variables from one class to another, and have the references be updated. (So if you move size
from being a class variable to a class named Constants
, every reference to size
in the original class will be replaced by Constants.size
automatically.)
Is there a way to do this in C# XNA Visual Studio 2010?