c# – 如果属性是反射中的集合,如何知道属性的类型?

c# – 如果属性是反射中的集合,如何知道属性的类型?,第1张

概述List<MyClass> MyClassPro{ get;set;}MyClass obj = new MyClass();obj.MyClassPro = null; 考虑MyClassPro为null.在反思的情况下,我不会知道类名或属性名称. 如果我尝试使用GetType获取属性类型, Type t = obj.GetType(); 它返回“System.Collecti
List<MyClass> MyClasspro{   get;set;}MyClass obj = new MyClass();obj.MyClasspro = null;

考虑MyClasspro为null.在反思的情况下,我不会知道类名或属性名称.

如果我尝试使用GetType获取属性类型,

Type t = obj.GetType();

它返回“System.Collections.Generic.List.但我的期望是将Type作为MyClass.

我也试过这样的方式

foreach(PropertyInfo propertyInfo in obj.GetPropertIEs())        {             if(propertyInfo.IsGenericType)             {              Type t = propertyInfo.GetValue(obj,null).GetType().GetGenericArguments().First();             }        }

但它返回错误是因为collection属性的值为null所以我们无法得到Type.

在这种情况下,我如何获得集合属性的类型.

请帮我 !

提前致谢.

解决方法 使用propertyInfo.PropertyType而不是propertyInfo.GetValue(obj,null).GetType(),即使属性值为null,也应该为您提供属性类型.

所以当你有一个类的时候

public class Foo {    public List<string> MyProperty { get; set; }}

然后是obj中的Foo实例

var propertyInfo = obj.GetType().GetProperty("MyProperty"); // or find it in a loop like in your own examplevar typeArg = propertyInfo.PropertyType.GetGenericArguments()[0];

将在typeArg中为您提供值System.String(作为System.Type实例).

总结

以上是内存溢出为你收集整理的c# – 如果属性是反射中的集合,如何知道属性的类型?全部内容,希望文章能够帮你解决c# – 如果属性是反射中的集合,如何知道属性的类型?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1240980.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存