public static void addItem(string input) { HashWord hash = new HashWord(); ObjectDictionary objectd = new ObjectDictionary(); List <char> letterlist = hash.splitWord(input); int hasheditem = hash.hashIt(letterlist); bool?answer = objectd.checkMyDictionary(hasheditem, input); objectd.PushBoth(input, hasheditem); }