问题描述
这很好用:
var expectedType = typeof(string);
object value = "...";
if (value.GetType().IsAssignableFrom(expectedType))
{
...
}
但是如何在不将 expectedType
设置为 typeof(string[])
的情况下检查 value 是否是字符串数组?我想做类似的事情:
But how do I check if value is a string array without setting expectedType
to typeof(string[])
? I want to do something like:
var expectedType = typeof(string);
object value = new[] {"...", "---"};
if (value.GetType().IsArrayOf(expectedType)) // <---
{
...
}
这可能吗?
推荐答案
使用 Type.IsArray 和 Type.GetElementType() 检查数组的元素类型.
Use Type.IsArray and Type.GetElementType() to check the element type of an array.
Type valueType = value.GetType();
if (valueType.IsArray && expectedType.IsAssignableFrom(valueType.GetElementType())
{
...
}
当心 Type.IsAssignableFrom().如果您想检查类型是否完全匹配,您应该检查是否相等(typeA == typeB
).如果要检查给定类型是类型本身还是子类(或接口),则应使用 Type.IsAssignableFrom()
:
Beware the Type.IsAssignableFrom(). If you want to check the type for an exact match you should check for equality (typeA == typeB
). If you want to check if a given type is the type itself or a subclass (or an interface) then you should use Type.IsAssignableFrom()
:
typeof(BaseClass).IsAssignableFrom(typeof(ExpectedSubclass))
这篇关于如何检查对象是否是某种类型的数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!