public void addLetter() { foreach (var letter in enteredText) { if (!LZWArray.ContainsKey(letter + "")) { index++; LZWArray.Add(letter + "", index); } } }
public bool checkInArray(string str) { if (LZWArray.ContainsKey(str)) { return(true); } else { return(false); } }