Example #1
0
        public string GetChineseSpell(string strText)
        {
            return(CommonExtensions.GetPinym(strText));

            //int len = strText.Length;
            //string myStr = "";
            //for (int i = 0; i < len; i++)
            //{
            //    myStr += getSpell(strText.Substring(i, 1));
            //}
            //return myStr;
        }