- 2025年05月12日
- 星期一
public static string GetChineseSpell(string strText) { int len = strText.Length; string myStr = ; for (int i = 0; i len; i++) { myStr += getSpell(strText.Substring(i, 1)); } return myStr; } public static string getSpell(string cnChar) { by