gpt4 book ai didi

c# - Xamarin PCL 中缺少 Type.GetProperties()

转载 作者:IT王子 更新时间:2023-10-29 04:45:57 25 4
gpt4 key购买 nike

在 Xamarin PCL 中,我试图获取我编写的类的 System.Reflection.PropertyInfo,以便我可以通过其字符串名称访问其属性以获取/设置,并且缺少 Type.GetTypeInfo() ,以及 Type.GetProperties。但是 System.Reflection.PropertyInfo 是一个有效的类。如何获取类的属性信息?我是否必须为每个平台编写一个包装器? (它在 Android/iOS 项目中显示得很好)。

最佳答案

这是一个扩展,所以你需要把

using System.Reflection;

在顶部。然后它可用:

        TypeInfo typeInfo = this.GetType().GetTypeInfo();
foreach (PropertyInfo propInfo in typeInfo.DeclaredProperties)

关于c# - Xamarin PCL 中缺少 Type.GetProperties(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26909316/

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