C# (Sharp) Programming Language Question:
Download Job Interview Questions and Answers 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.
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