using System.Collections.Generic;
public static class PokemonLookup
static Dictionary<string, string[]> dict = new Dictionary<string, string[]>();
static public void Initialize()
string[] Water = new string[3];
string[] Grass = new string[3];
string[] Fire = new string[2];
string[] Fairy = new string[1];
static public string[] LookupByType(string pokemonType)
dict.TryGetValue(pokemonType, out result);
public static void Main()
PokemonLookup.Initialize();
foreach (string s in PokemonLookup.LookupByType("Water"))