/// <summary> /// Metodo che crea la lista delle zone dei Pokémon a partire da una lista di stringhe /// </summary> /// <param name="lines">Lista di stringhe contenenti le zone</param> public void GetPlaceList(List<string> lines) { placeList = new List<PokemonPlace>(); while (lines.Count > 0) { try { PokemonPlace p = new PokemonPlace(lines[0]); placeList.Add(p); } catch (ProgramException) { } lines.RemoveAt(0); } }
/// <summary> /// Metodo che crea la lista delle zone dei Pokémon a partire da una lista di stringhe /// </summary> /// <param name="lines">Lista di stringhe contenenti le zone</param> public void GetPlaceList(List <string> lines) { placeList = new List <PokemonPlace>(); while (lines.Count > 0) { try { PokemonPlace p = new PokemonPlace(lines[0]); placeList.Add(p); } catch (ProgramException) { } lines.RemoveAt(0); } }