我知道如何直接检查字段的类型。但是我怎么能实现这样的东西
private bool checkJumpObstacle(Type type)
{
foreach (GameObject3D go in GameItems)
{
if (go is type) // won't accept 'type'
{
return true;
}
}
return false;
}
对于类型,我想传递Car
,House
或Human
作为参数(这些都是类)。但是这种代码不起作用。