您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在C#中,特性(Attribute)是一种用于为代码添加元数据的方法
以下是如何创建自定义特性并将其应用于类和方法的示例:
System.Attribute
。using System;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
public class CustomMetadataAttribute : Attribute
{
public string Key { get; set; }
public string Value { get; set; }
public CustomMetadataAttribute(string key, string value)
{
Key = key;
Value = value;
}
}
using System;
[CustomMetadata("ClassKey", "ClassValue")]
public class MyClass
{
[CustomMetadata("MethodKey", "MethodValue")]
public void MyMethod()
{
// ...
}
}
using System;
using System.Reflection;
class Program
{
static void Main(string[] args)
{
Type type = typeof(MyClass);
// 获取类上的特性
object[] classAttributes = type.GetCustomAttributes(typeof(CustomMetadataAttribute), false);
Console.WriteLine($"Class: {type.Name}");
foreach (CustomMetadataAttribute attribute in classAttributes)
{
Console.WriteLine($"Key: {attribute.Key}, Value: {attribute.Value}");
}
// 获取方法上的特性
MethodInfo methodInfo = type.GetMethod("MyMethod");
object[] methodAttributes = methodInfo.GetCustomAttributes(typeof(CustomMetadataAttribute), false);
Console.WriteLine($"\nMethod: {methodInfo.Name}");
foreach (CustomMetadataAttribute attribute in methodAttributes)
{
Console.WriteLine($"Key: {attribute.Key}, Value: {attribute.Value}");
}
}
}
运行此程序,你将看到以下输出:
Class: MyClass
Key: ClassKey, Value: ClassValue
Method: MyMethod
Key: MethodKey, Value: MethodValue
这就是如何在C#中创建自定义特性并将其应用于类和方法的方法。通过使用反射,你可以轻松地获取这些特性并生成报告。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。