protected void CrearPista() { MPista ayuda = new MPista(label2.Text, (int)numericUpDown1.Value, (int)numericUpDown2.Value); mpis[3 * nivel - numInt] = ayuda; textBox1.Text += ayuda.Cadena + " " + ayuda.Tocados + "T " + ayuda.Situados + "S." + "\r\n"; --numInt; }
protected void CrearMPistas() { int indice; mpis = new MPista[FNivel.MAX_NIV * 3]; for (indice = 0; indice < FNivel.MAX_NIV * 3; ++indice) { mpis[indice] = new MPista(); } }