摘要:
public static string MoneyToChinese(string LowerMoney){ string functionReturnValue = null; bool IsNegative = false; // 是否是负数 if (LowerMoney.Trim().Substring(0, 1) == "-") { // 是负数则先转为正数 LowerMoney = LowerMoney.Trim().Remove(0, 1); IsNegative = true; } string strLower = null; string strUpar 阅读全文
posted @ 2013-05-08 13:38
殷豪
阅读(218)
评论(0)
推荐(0)