摘要: public static string MoneyToUpper(string strAmount) { string functionReturnValue =null; bool IsNegative =false; // 是否是负数 if (strAmount.Trim().Substring(0, 1) =="-") { // 是负数则先转为正数 strAmount = strAmount.Trim().Remove(0, 1); IsNegative =true; } string strLower =null; string strUpart =null; s 阅读全文
posted @ 2012-07-25 10:33 jsping68 阅读(4835) 评论(0) 推荐(0) 编辑