摘要:
int overlap(int a, int b, int c, int d) { int _max= max( a, c); int _min = min( b, d); return _max<=_min ; } a-b是个集合范围 c-d是个集合范围 同理,如果参数改为时间也是有效的 阅读全文
摘要:
var webRootUrl = "http://xxxx.com"; string pathPositionReal = webRootUrl + "/api/a/b"; var hander = new HttpClientHandler { UseCookies = true }; var c 阅读全文