help
public int HowManyMoreThenNum(Actor[] arrActor, int num)
{
int counter = 0;
for (int i = 0; i < arrActor.Length; i++)
{
if (arrActor[i].GetFilm > num)
{
counter++;
}
}
return counter;
}