确定是否可以为反映的属性分配给定值
确定是否可以为反射属性分配给定值的最简单方法是什么?
我需要的方法签名是:
public static bool IsAssignable(PropertyInfo property, object value)
{
throw new NotImplementedException();
}
该方法应该适用于值类型和引用类型,无论值是否为空。
谢谢你们的帮助。
曼尼特拉。
What is the easiest way to determine if a reflected property can be assigned a given value ?
The method signature of what I need is :
public static bool IsAssignable(PropertyInfo property, object value)
{
throw new NotImplementedException();
}
This method should work for value type and reference type and weither value is null or not.
Thanks for you help guys.
Manitra.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能正在寻找 Type.IsAssignableFrom
You are probably looking for Type.IsAssignableFrom
您无法确定作为
object
传递的null
的类型。您只能判断该属性是否能够接受null
。由于这个原因,您可以采用编译时类型:
You can't determine the type of
null
which is passed asobject
. You only can say if the property is able to takenull
at all.You could take the compile-time type for that reason:
感谢 Stefan 和 John 的回复,以及“确定反射属性是否可以分配为空”问题,这是我将使用的代码:
这适用于所有情况,并且以纯粹的松散类型方式。
曼尼特拉。
Thanks to Stefan's and John responses, and the "Determine if a reflected property can be assigned null" question, here is the code I'll use :
This works for all cases and in a pure loosely typed fashion.
Manitra.