I have this method:
static void muestro(int[,] matriz) //MOSTRAR APUESTAS
{
for (int fila = 0; fila < matriz.GetLength(0); fila++)
{
for (int col = 0; col < matriz.GetLength(1); col++)
{
Console.Write(matriz[fila, col] + "\t");
}
Console.WriteLine();
}
Console.ReadLine();
}
and here I invoke it in the main:
case 5:
Console.WriteLine(listado de apuestas: ");
mostrar(matriz);
break;
But at the time of listing does not show me the name of the bettor, and therefore when I eliminate the bettor does not eliminate the bet, because when I return to list it keeps appearing, I need you to show me all the bets of all the bettors