public static Tempera operator +(Tempera t1, Tempera t2)
        {
            Tempera t3 = new Tempera(t1._cantidad, t1._color, t1._marca);

            if (t1 == t2)
            {
                t3 += t2._cantidad;
            }
            return(t3);
        }
        private int ObtenerIndice(Tempera t)
        {
            int indice = -1;
            int i;

            for (i = 0; i < this._cantMaximaelementos; i++)
            {
                if (this._colores.GetValue(i) != null && this._colores[i] == t)
                {
                    indice = i;
                }
            }
            return(indice);
        }