public bool CanIEatU (object obj){
Dinosaur dino = (Dinosaur) obj;
if (this.Length > dino.Length)
return true;
else
return false;
}