C#,.Net自动生成大写字母编码

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

返回顶部