您好,登錄后才能下訂單哦!
在C#中,特性(Attribute)是一種用于為代碼添加元數據的機制
System.Attribute
類繼承的新類。例如,我們可以創建一個名為MyCustomAttribute
的特性:using System;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
public class MyCustomAttribute : Attribute
{
public string Name { get; set; }
public int Value { get; set; }
public MyCustomAttribute(string name, int value)
{
Name = name;
Value = value;
}
}
[MyCustomAttribute("ClassAttribute", 1)]
public class MyClass
{
[MyCustomAttribute("MethodAttribute", 2)]
public void MyMethod()
{
// ...
}
}
MyClass
類上的MyCustomAttribute
特性:using System;
using System.Reflection;
class Program
{
static void Main(string[] args)
{
Type type = typeof(MyClass);
object[] attributes = type.GetCustomAttributes(typeof(MyCustomAttribute), false);
foreach (MyCustomAttribute attribute in attributes)
{
Console.WriteLine($"Name: {attribute.Name}, Value: {attribute.Value}");
}
}
}
在Visual Studio中,你可以使用以下快捷鍵進行代碼導航:
希望這些信息對你有所幫助!如果你有其他問題,請隨時提問。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。