确定是否可以为反映的属性分配给定值

发布于 2024-10-21 00:15:59 字数 265 浏览 1 评论 0原文

确定是否可以为反射属性分配给定值的最简单方法是什么?

我需要的方法签名是:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浮生面具三千个 2024-10-28 00:15:59

您可能正在寻找 Type.IsAssignableFrom

You are probably looking for Type.IsAssignableFrom

瑶笙 2024-10-28 00:15:59

您无法确定作为 object 传递的 null 的类型。您只能判断该属性是否能够接受 null

由于这个原因,您可以采用编译时类型:

public static bool IsAssignable<T>(PropertyInfo property, T value)
{        
    if (value != null)
    {
        return property.PropertyType.IsAssignableFrom(value.GetType());
    }
    return property.PropertyType.IsAssignableFrom(typeof(T));
}

You can't determine the type of null which is passed as object. You only can say if the property is able to take null at all.

You could take the compile-time type for that reason:

public static bool IsAssignable<T>(PropertyInfo property, T value)
{        
    if (value != null)
    {
        return property.PropertyType.IsAssignableFrom(value.GetType());
    }
    return property.PropertyType.IsAssignableFrom(typeof(T));
}
一身仙ぐ女味 2024-10-28 00:15:59

感谢 Stefan 和 John 的回复,以及“确定反射属性是否可以分配为空”问题,这是我将使用的代码:

public static bool IsAssignable(PropertyInfo property, object value)
{
    if (value == null && property.PropertyType.IsValueType && Nullable.GetUnderlyingType(property.PropertyType) == null)
        return false;
    if (value != null && !property.PropertyType.IsAssignableFrom(value.GetType()))
        return false;
    return true;
}

这适用于所有情况,并且以纯粹的松散类型方式。

曼尼特拉。

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 :

public static bool IsAssignable(PropertyInfo property, object value)
{
    if (value == null && property.PropertyType.IsValueType && Nullable.GetUnderlyingType(property.PropertyType) == null)
        return false;
    if (value != null && !property.PropertyType.IsAssignableFrom(value.GetType()))
        return false;
    return true;
}

This works for all cases and in a pure loosely typed fashion.

Manitra.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文