Exemple #1
0
        public string ClaveA()
        {
            string nombre, letras, grasas;

            nombre = Nombre.ToString();
            letras = nombre.Substring(0, 3).ToUpper();
            grasas = Grasas.ToString();
            return(letras + grasas);
        }
        public string ClaveA()
        {
            string tempName = Nombre.Substring(0, 3);

            return((tempName + Grasas.ToString()).ToUpper());
        }