摘要: 从周一到周日的顺序,获取排序数值: int i = DateTime.Now.DayOfWeek - DayOfWeek.Monday; if (i == -1) i = 6; 获取某日起,星期一日期: public static DateTime GetMondayDate(DateTime so 阅读全文
posted @ 2018-11-21 01:03 ToLoveAsync 阅读(510) 评论(4) 推荐(0) 编辑
摘要: Stream s = Request.InputStream; int count = 0; byte[] buffer = new byte[1024]; StringBuilder reqXml = new StringBuilder(); while ((count = s.Read(buff 阅读全文
posted @ 2018-11-21 00:48 ToLoveAsync 阅读(1266) 评论(1) 推荐(0) 编辑
摘要: public SortedDictionary<string, string> GetRequestPost() { int i = 0; SortedDictionary<string, string> sArray = new SortedDictionary<string, string>() 阅读全文
posted @ 2018-11-21 00:45 ToLoveAsync 阅读(1344) 评论(1) 推荐(0) 编辑