gpt4 book ai didi

c# - 如何引用类(不是对象)的属性?

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:31 25 4
gpt4 key购买 nike

我有一个模块可以遍历对象的公共(public)属性(使用 Type.GetProperties()),并对这些属性执行各种操作。然而,有时一些属性应该以不同的方式处理,例如,忽略。例如,假设我有以下类(class):

class TestClass
{
public int Prop1 { get; set; }
public int Prop2 { get; set; }
}

现在,我希望能够指定每当我的模块获取类型为 TestClass 的对象时,属性 Prop2 应该被忽略。理想情况下,我希望能够说这样的话:

ReflectionIterator.AddToIgnoreList(TestClass::Prop2);

但这显然行不通。我知道如果我首先创建该类的一个实例,我可以获得一个 PropertyInfo 对象,但是仅仅为了这样做而创建一个人工实例似乎是不对的。有没有其他方法可以获得 TestClass::Prop2 的 PropertyInfo 对象?

(郑重声明,我当前的解决方案使用字符串文字,然后将其与迭代的每个属性进行比较,如下所示:

ReflectionIterator.AddToIgnoreList("NamespaceName.TestClass.Prop2");

然后在遍历属性时:

foreach (var propinfo in obj.GetProperties())
{
if (ignoredProperties.Contains(obj.GetType().FullName + "." + propinfo.Name))
// Ignore
// ...
}

但是这个解决方案看起来有点困惑而且容易出错...)

最佳答案

List<PropertyInfo> ignoredList = ...

ignoredList.Add(typeof(TestClass).GetProperty("Prop2"));

应该完成这项工作...只需检查是否 ignoredList.Contains(propinfo)

关于c# - 如何引用类(不是对象)的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11205686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com