4
我知道如何直接檢查一個字段的類型。 但我怎麼能實現這樣的如何檢查循環中的類型?
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
作爲參數(這些都是類)。 但這種代碼不起作用。
太棒了!謝謝 – 2013-04-29 14:55:19
哦喬恩......... – 2013-04-29 14:57:18
喬恩,這個怎麼樣? 'if(type.GetType()== go.GetType()。BaseType)' – 2013-04-29 15:05:36