Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How do I mark a method as Obsolete/Deprecated? - C#

How do you mark a class as deprecated? I do not want to use a class any more in my project, but do not want to delete it before a period of 2 weeks.

share|improve this question

marked as duplicate by Chris Ballance, Ioannis Karadimas, Robert Rouhani, Jon Egerton, Wonko the Sane Jan 24 at 18:02

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 165 down vote accepted

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.

share|improve this answer

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.

share|improve this answer

As per Doak's answer, but the attribute's second parameter should be set to false if you want the code to compile:

[Obsolete("Not used anymore", false)]
public class MyDeprecatedClass
{
        //...
}

This will just throw warnings.

share|improve this answer

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.

share|improve this answer
1  
I'm guessing/assuming he wants to mark it deprecated in order to allow the code to still compile in the meantime while he removes all references to it in the codebase. – shsteimer Nov 24 '08 at 15:44
6  
I need to do it progressivly. I can't erase it from the project right now. Commenting a class or a method is hard to find it later... I do not want to forget about it. Deprecating a method has still is place I think. – Mister Dev Nov 24 '08 at 15:47
2  
That makes sense. I would get rid of the class eventually though. – jjnguy Nov 24 '08 at 15:48
1  
Downvotes are part of life. I don't harbor bad feelings about it. (but thanks) – jjnguy Nov 24 '08 at 15:54
1  
If you're developing a public API, you don't have the option of deleting an obsolete method or class. You often have to give your customers several releases to code away their dependency on your code. – Michael Meadows Nov 24 '08 at 16:29
show 7 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.