这是在.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>
,则可以将其分配给T
。问题在于
Nullable<T>
不是Type
,因此调用CheckIfAssignable(3, Nullable<Int32>)
与功能签名不匹配。将签名更改为:
protected void CheckIsAssignable(Object value, ValueType destinationType)
我可以传递
Nullable<T>
,但是我不能将其作为Nullable.GetUnderlyingType
的参数提交。我不确定是否使这个问题过于复杂,但是我觉得有一个简单的解决方案我只是没有看到。
最佳答案
您没有在那里传递类型本身。您需要像这样使用typeof()
命令:
CheckIfAssignable(3, typeof(Nullable<Int32>))
关于c# - 将 `Nullable<T>`作为Type参数传递给C#函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47417386/