Attributes are one of the main features of c#.Attributes can be used if we want to attach metadata to the program elements such as class or method.Attributes are used with reflection to retrieve the metadata at runtime. Attributes are classes which are derived from the System.Attribute class which is an abstract class.Though there are lot of different […]