摘要: /// <summary> /// 本类实现阿拉伯数字到大写中文的转换 /// 该类没有对非法数字进行判别,请事先自己判断数字是否合法 /// </summary> public class ChineseNum { //小写转大写 public static string GetChineseNum(string p_num) { ChineseNum cn = new ChineseNum(); return cn.NumToChn(p_num); } //小写金额转大写金额 public static string GetUpperMoney(double p_M 阅读全文
posted @ 2010-05-26 21:01 正文 阅读(1824) 评论(0) 推荐(0) 编辑