2007年3月8日
摘要: #region 根据年月获取每周起止时间 public string RegexDay(string time) { Regex r = new Regex("-"); // Split on hyphens. string[] s = r.Split(time); return s[s.Length - 1].ToString(); ... 阅读全文
posted @ 2007-03-08 15:12 心有灵犀 阅读(450) 评论(0) 推荐(0)