您好,登錄后才能下訂單哦!
在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);
foreach (CustomMetadataAttribute attribute in classAttributes)
{
Console.WriteLine($"Class - Key: {attribute.Key}, Value: {attribute.Value}");
}
// 獲取方法上的特性
MethodInfo methodInfo = type.GetMethod("MyMethod");
object[] methodAttributes = methodInfo.GetCustomAttributes(typeof(CustomMetadataAttribute), false);
foreach (CustomMetadataAttribute attribute in methodAttributes)
{
Console.WriteLine($"Method - Key: {attribute.Key}, Value: {attribute.Value}");
}
}
}
運行上述代碼,你將看到以下輸出:
Class - Key: ClassKey, Value: ClassValue
Method - Key: MethodKey, Value: MethodValue
這樣,你就可以根據需要對特性進行統計和分析。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。