|  | What is Attributes in .NET We can say Attributes are declarative tags in .NET code that will insert additional metadata into assembly.
 In .NET two types of attributes
 (1)Predefined attributes such as Assembly Version, which already exist and are accessed  through the Runtime Classes.
 (2)Custom attributes, which neet to write by the coder himself by extending the System.Attribute class.
 |  |  |