How to mark a class deprecated? I do not want to use a class anymore in my project, but do not want to delete it beforea period of 2 weeks.
You need to use the attribute [Obsolete]
.
This is an example:
[Obsolete("Not used anymore",true)]
public class MyDeprecatedClass
{
//...
}
You do not have use parameters, they are optional (overloaded method). The first parameter is for the reason and the last one is to mark an Error in compile time instead of a warning.
If you are using version control I would recommend just deleting the class. There is no reason to have unused code around.
Version control will be a handy undo if you decide later that you want the class.
The reason to not erase a class and deprecate instead is to adhere to some "politeness policies" when your code is an estabished API and then is consumed by third parties.
If you deprecate instead of erase, you give consumers a life cycle policy (e.g., maintenance and existence of the classes until version X.X) in order to allow them to plan a proper migration to your new API.