Esempio n. 1
0
        public bool TemOTipo(PetTypeName tipo)
        {
            bool retorno = false;

            for (int i = 0; i < meusTipos.Length; i++)
            {
                if (meusTipos[i].ToString() == tipo.ToString())
                {
                    retorno = true;
                }
            }

            return(retorno);
        }
 public static string NomeEmLinguas(PetTypeName nome)
 {
     return(nome.ToString());
 }