这是在.NET Core 1.1.4项目中,因此请考虑这一点。
我尝试创建一个函数来验证是否可以将值分配给某个类型,但我遇到了Nullable<T>
类型的问题。
我的功能:
protected void CheckIsAssignable(Object value, Type destinationType)
{
if (value == null)
{
// Nullable.GetUnderlyingType returns null for non-nullable types.
if (Nullable.GetUnderlyingType(destinationType) == null)
{
var message =
String.Format(
"Property Type mismatch. Tried to assign null to type {0}",
destinationType.FullName
);
throw new TargetException(message);
}
}
else
{
// If destinationType is nullable, we want to determine if
// the underlying type can store the value.
if (Nullable.GetUnderlyingType(destinationType) != null)
{
// Remove the Nullable<T> wrapper
destinationType = Nullable.GetUnderlyingType(destinationType);
}
// We can now verify assignability with a non-null value.
if (!destinationType.GetTypeInfo().IsAssignableFrom(value.GetType()))
{
var message =
String.Format(
"Tried to assign {0} of type {1} to type {2}",
value,
value.GetType().FullName,
destinationType.FullName
);
throw new TargetException(message);
}
}
}
上面的if
子句处理value
为null
的情况,并尝试验证destinationType
是Nullable<T>
;如果else
实际包含某些内容,value
子句会处理,因此它会尝试确定您是否可以将其分配给destinationType
,或者如果它Nullable<T>
分配给它{} #39;可分配给T
。
问题是Nullable<T>
不是Type
,因此调用CheckIfAssignable(3, Nullable<Int32>)
与功能签名不匹配。
将签名更改为:
protected void CheckIsAssignable(Object value, ValueType destinationType)
让我传递Nullable<T>
,但我无法将其作为Nullable.GetUnderlyingType
的参数提交。
我不确定我是否过度复杂了这个问题,但我觉得有一个简单的解决方案,我只是没有看到。
答案 0 :(得分:6)
你没有在那里传递类型。您需要使用typeof()
命令,如下所示:
CheckIfAssignable(3, typeof(Nullable<Int32>))