溫馨提示×

C#中GetCustomAttributes如何獲取類型屬性

c#
小樊
93
2024-08-19 13:10:29
欄目: 編程語言

在C#中,可以使用GetCustomAttributes方法來獲取類型的屬性。以下是一個(gè)簡單的示例代碼:

using System;
using System.Reflection;

class Program
{
    [Serializable]
    class MyClass
    {
        public int MyProperty { get; set; }
    }

    static void Main()
    {
        Type type = typeof(MyClass);
        object[] attributes = type.GetCustomAttributes(true);

        foreach (var attribute in attributes)
        {
            Console.WriteLine(attribute.GetType().Name);
        }
    }
}

在上面的示例中,首先定義了一個(gè)包含Serializable屬性的類MyClass。然后在Main方法中使用GetCustomAttributes方法獲取MyClass的所有屬性,并將它們打印到控制臺上。

注意,GetCustomAttributes方法的第一個(gè)參數(shù)是一個(gè)bool類型的參數(shù),用于指定是否也獲取繼承的屬性。如果傳入true,則會(huì)獲取繼承的屬性;如果傳入false,則只獲取當(dāng)前類型的屬性。

0