摘要:
//如本年度销售额、本季度利润、本月新增客户 //C#里内置的DateTime基本上都可以实现这些功能,巧用DateTime会使你处理这些事来变轻松多了 //今天 DateTime.Now.Date.ToShortDateString(); ... 阅读全文
摘要:
C#格式化日期时间 Post By:2008-10-3 7:57:30 DateTime dt = DateTime.Now;Label1.Text = dt.ToString(); //2005-11-5 13:21:25Label2.Text = dt.ToFileTime().ToString(); ... 阅读全文