摘要: //年份转换为大写汉字 public static string numtoUpper(int num) { return "零壹贰叁肆伍陆柒捌玖"[num].ToString(); } //月份转换大写汉字 public static string monthtoUpper(int month) ... 阅读全文
posted @ 2016-08-16 17:34 AiKier 阅读(934) 评论(0) 推荐(1)