摘要: View Code #region 中文转拼音 public string getSpells(string input) { int len = input.Length; string reVal = ""; for (int i = 0; i < len; i++) { reVal += getSpell(input.Substring(i, 1)); } return reVal; ... 阅读全文
posted @ 2012-08-14 14:08 宋佳莉 阅读(226) 评论(0) 推荐(0) 编辑