C# (Sharp) Programming Language Question:
Download Questions PDF

How do you mark a method obsolete?

Answer:

[Obsolete] public int Foo() {...}
or
[Obsolete("This is a message describing why this method is obsolete")] public int Foo() {...}
Note: The O in Obsolete is always capitalized.

Download C# (Sharp) Programming Language Interview Questions And Answers PDF

Previous QuestionNext Question
How do you specify a custom attribute for the entire assembly (rather than for a class)? How do you implement thread synchronization (Object.Wait, Notify,and CriticalSection) in C#?