I found this little bit of code to help me keep track of moving from older classes and methods to newer ones (in instances where I need to do so over time):
[Obsolete("This class is being replaced with Program2.0")] class Program { [Obsolete("This method is being replaced with Process2.0")] static void Process(string[] args) { } }
Remember Me