在C#中,可以使用GetCustomAttributes方法來獲取類型的屬性。以下是一個簡單的示例代碼:
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);
}
}
}
在上面的示例中,首先定義了一個包含Serializable屬性的類MyClass。然后在Main方法中使用GetCustomAttributes方法獲取MyClass的所有屬性,并將它們打印到控制臺上。
注意,GetCustomAttributes方法的第一個參數是一個bool類型的參數,用于指定是否也獲取繼承的屬性。如果傳入true,則會獲取繼承的屬性;如果傳入false,則只獲取當前類型的屬性。