private static void TestFpStr(string str1, string str2, CSpellApi cSpellApi)
        {
            HashSet <string> candSet = GetCandidates(str1.ToLower(), cSpellApi);
            bool             flag    = candSet.Contains(str2);

            if (flag == true)
            {
                totalFpNo_++;
            }
            totalFpStrNo_++;
            Console.WriteLine(flag + "|" + totalFpNo_ + "|" + totalFpStrNo_ + "|" + str1 + "|" + str2 + "|" + EditDistance.GetDistanceForRealWord(str1, str2) + "|" + RefinedSoundex.GetDistanceDetailStr(str1, str2) + "|" + Metaphone2.GetDistanceDetailStr(str1, str2, 10));
        }