예제 #1
0
        private string Mostrar()
        {
            string s = "Cantidad maxima de colores: " + this.cantMaxColores + "\n";

            for (int i = 0; i < this.cantMaxColores; i++)
            {
                if (this.colores.GetValue(i) != null)
                {
                    s += Tempera.Mostrar(colores[i]) + "\n";
                }
            }
            return(s);
        }
예제 #2
0
        private string Mostrar()
        {
            string retorno = "Cantidad maxima de colores: " + this.CantidadMaximaColores + "\n";

            for (int i = 0; i < this.CantidadMaximaColores; i++)
            {
                if (this.colores_Array.GetValue(i) != null)
                {
                    retorno += Tempera.Mostrar(this.colores_Array[i]) + "\n";
                }
            }

            return(retorno);
        }
예제 #3
0
        private int ObtenerIndice(Tempera tempera)
        {
            int rtn = -1;

            for (int i = 0; i < this.cantMaxColores; i++)
            {
                if (tempera == this.colores[i])
                {
                    rtn = i;
                    break;
                }
            }
            return(rtn);
        }
예제 #4
0
        private int ObtenerIndice(Tempera objTempera)
        {
            int indice = -1;

            for (int i = 0; i < this.CantidadMaximaColores; i++)
            {
                if (this.colores_Array[i] == objTempera)
                {
                    indice = i;
                    break;
                }
            }

            return(indice);
        }
예제 #5
0
        public static string Mostrar(Tempera objTempera)
        {
            string s = objTempera.Mostrar();

            return(s);
        }
예제 #6
0
 public static string Mostrar(Tempera objTempera)
 {
     return objTempera.Mostrar();
 }