09 2014 档案

摘要:方法一:DateTime dt1 = Convert.ToDateTime("2013-09-30");DateTime dt2 = DateTime.Now;int count = Convert.ToInt32((dt2 - dt1).TotalDays) - 1;count即为dt1距离dt2... 阅读全文
posted @ 2014-09-28 16:07 Iwin9999 阅读(2476) 评论(0) 推荐(0)
摘要://////输入Float格式数字,将其转换为货币表达方式//////货币表达类型:0=带¥的货币表达方式;1=不带¥的货币表达方式;其它=带¥的货币表达方式///传入的int数字///返回转换的货币表达形式publicstringRmoney(intftype,doublefmoney){stri... 阅读全文
posted @ 2014-09-26 17:04 Iwin9999 阅读(1993) 评论(0) 推荐(0)