I have a list (called Within
), and it contains objects of type GameObject
.
GameObject
is a parent class to many others, including Dog
and Ball
. I want to make a method that returns true if Within contains any object of type Ball
, but I don't know how to do this.
I've tried using Count<>
, Any<>
, Find<>
and a few other methods provided within C#, but I couldn't get them to work.
public bool DetectBall(List<GameObject> Within)
{
//if Within contains any object of type ball:
{
return true;
}
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…