private static void IncrementOccuranceCountTrie(Stopwatch sw, TrieNode start, MatchCollection allWords)
        {
            sw.Restart();
            foreach (var word in allWords)
            {
                start.AddOccuranceIfExists(start, word.ToString());
            }

            sw.Stop();
            Console.WriteLine("Adding searched words count trie for: {0}", sw.Elapsed);
        }