How to mark a class as Obsolete or Deprecated in C# ?
Sometimes , you may want to mark a class or method as deprecated so that the you dont want to use the class any more and also want to let know , other developers that the class is obsolete .
You can do that by using the Obsolete attribute as shown below . The Obsolete attribute also includes 2nd parameter (boolean) . When this valus is false , only a warning is shown when building the project . When this valus is true , it shows an compiler error.
How to mark a class as Obsolete or Deprecated in C# ?
C#
x
25
25
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
7
namespace AbundantcodeConsole
8
{
9
10
class Program
11
{
12
static void Main(string[] args)
13
{
14
Employee emp = new Employee();
15
16
Console.WriteLine("Welcome to Abundantcode.com");
17
Console.ReadLine();
18
}
19
}
20
[Obsolete("This class is deprecated", true)]
21
public class Employee
22
{
23
public string Name { get; set; }
24
}
25
}
Leave Your Comment