阅读量:0
在C#中,可以使用Attribute来为类和方法添加元数据信息。要将Attribute应用到类或方法上,可以使用方括号[]将Attribute放在类或方法的上方。例如:
[Serializable] public class MyClass { // class implementation } public class Program { [Obsolete("This method is deprecated. Use NewMethod instead.")] public void OldMethod() { // method implementation } public void NewMethod() { // method implementation } }
在上面的示例中,MyClass类上应用了Serializable Attribute,OldMethod方法上应用了Obsolete Attribute。这些Attribute可以提供额外的信息,比如序列化类的对象或者标记方法为废弃的。当使用这些类或方法时,编译器或IDE可以根据Attribute提供的信息做出相应的处理。