gpt4 book ai didi

c# - PCL 反射使用 BindingFlags 获取属性

转载 作者:太空狗 更新时间:2023-10-29 21:53:35 50 4
gpt4 key购买 nike

我有下面的代码。

    public static IEnumerable<PropertyInfo> GetAllPublicInstanceDeclaredOnlyProperties(this Type type)
{
var result =
from PropertyInfo pi in type.GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly)
select pi;

return result;
}

我正在尝试将其转换为 PCL 库,但我无法弄清楚。我试过了

type.GetTypeInfo().DeclaredProperties.Where(x => x.BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly)

但是 BindingFlags 不存在。

我错过了什么?

最佳答案

根据 MSDN , 支持 GetProperties 方法:

Supported in: Portable Class Library

确保您已包含 System.Reflection 命名空间。

GetProperties()System.Reflection.TypeExtensions 类(一堆反射扩展方法)的一部分,因此包括命名空间,您应该有这个和类似的扩展可用。

如果仍然不可用,请尝试通过 NuGet 包含 System.Reflection.TypeExtensions 程序集| .

PM> Install-Package System.Reflection.TypeExtensions

关于c# - PCL 反射使用 BindingFlags 获取属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32001513/

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