C#遍历类的属性 PropertyInfo.Attributes

c#
629
2023/10/8 4:40:20
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,可以使用反射来遍历类的属性,并获取属性的属性(Attribute)信息。首先,需要获取属性的Type对象,然后使用Type对象的GetProperties()方法来获取类的所有属性。接下来,可以使用属性的GetCustomAttributes()方法来获取属性的所有属性(Attribute)。

以下是一个示例代码来遍历类的属性并获取属性的属性(Attribute)信息:

using System;
using System.Reflection;
class MyClass
{
[Obsolete("This property is obsolete.")]
public string MyProperty { get; set; }
}
class Program
{
static void Main()
{
Type myClassType = typeof(MyClass);
PropertyInfo[] properties = myClassType.GetProperties();
foreach (PropertyInfo property in properties)
{
Console.WriteLine("Property Name: " + property.Name);
object[] attributes = property.GetCustomAttributes(true);
foreach (var attribute in attributes)
{
Console.WriteLine("Attribute Type: " + attribute.GetType().Name);
Console.WriteLine("Attribute Value: " + attribute.ToString());
}
Console.WriteLine();
}
Console.ReadLine();
}
}

运行上述代码,将输出类的属性名称以及每个属性的属性(Attribute)信息。在示例代码中,我们定义了一个名为MyClass的类,其中包含一个被标记为Obsolete属性的属性MyProperty。运行代码后,将输出以下结果:

Property Name: MyProperty
Attribute Type: ObsoleteAttribute
Attribute Value: System.ObsoleteAttribute

从输出结果可以看出,我们成功获取了属性MyProperty的属性(Attribute)信息,该属性被标记为Obsolete

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c#重构怎样避免破坏现有功能