A ver si sabeis por que no me recorre el for, no entra, y no se muy bien a que se debe, ya que no me muestra los datos porque no entra en el for, gracias
case 2:
{
Console.WriteLine("Añadir Habitacion");
ArrayList K = new ArrayList ();
Habitacion P = new Habitacion();
P.Nombre = "Cuarto de Baño";
P.Pared = 2;
P.Puertas=10;
P.Ventanas=1;
P.TipoPintura=2;
K.Add (P);
P = new Habitacion();
P.Nombre = "hghjghjgjh";
P.Pared = 2;
P.Puertas=10;
P.Ventanas=1;
P.TipoPintura=2;
K.Add (P);
//Habitacion.ImprimirPersonas (K);
//K.RemoveAt (1);
for (int i=0 ; i<=K.Count; i++)
{
//Habitacion P = (Habitacion) K;
Console.WriteLine ("{0} - {1} - {2} - {3} - {4} - {5} ", P.Nombre, P.Pared, P.Puertas, P.Ventanas, P.TipoPintura);
} break;
}