阅读量:0
要自定义一个C# Attribute,可以按照以下步骤进行:
- 创建一个继承自System.Attribute的类,这个类就是你自定义的Attribute类。可以为这个类添加一些属性来表示该Attribute的参数。
using System; [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class CustomAttribute : Attribute { public string Name { get; } public CustomAttribute(string name) { Name = name; } }
定义一个AttributeUsage特性来指定你的Attribute可以应用到哪些地方,比如类、方法等。在上面的例子中,我们定义了CustomAttribute可以应用到类和方法上。
在需要使用自定义Attribute的地方,直接在类或者方法上使用你定义的Attribute类。
[CustomAttribute("Example")] public class MyClass { [CustomAttribute("Method")] public void MyMethod() { // do something } }
- 在代码中获取自定义Attribute的信息。可以使用Reflection来获取类或方法上的Attribute。
// 获取类上的自定义Attribute CustomAttribute classAttribute = (CustomAttribute)Attribute.GetCustomAttribute(typeof(MyClass), typeof(CustomAttribute)); Console.WriteLine(classAttribute.Name); // 获取方法上的自定义Attribute CustomAttribute methodAttribute = (CustomAttribute)Attribute.GetCustomAttribute(typeof(MyClass).GetMethod("MyMethod"), typeof(CustomAttribute)); Console.WriteLine(methodAttribute.Name);
通过以上步骤,你就可以自定义一个C# Attribute,并在需要的地方使用它。