gpt4 book ai didi

c# - Type.GetProperties 排除带有运算符 [] 的属性

转载 作者:太空狗 更新时间:2023-10-30 00:31:53 24 4
gpt4 key购买 nike

当我打电话

Type.GetProperties(BindingFlags.Public | BindingFlags.Instance)

我还使用 [] 运算符获取属性。所以例如我有:

MyType
-> Property1
-> Property2[string]

PropertyInfo 的返回列表同时包含 Property1 或 Property2。

如何排除带有运算符的属性?

我更希望它通过 bindingflags 发生,但遍历 PropertyInfo afterwords 也可以,但我在 PropertyInfo 类上看不到任何指示它是否具有运算符的信息。

最佳答案

我不认为有任何 BindingFlags 值可以从一开始就将它们排除在外,但您可以使用 PropertyInfo.GetIndexParameters()过滤属性:如果一个属性没有被索引,它就没有索引参数。

关于c# - Type.GetProperties 排除带有运算符 [] 的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21613877/

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