竹影横扫窗

导航

 

2021年1月13日

摘要: 1. 判断两个列表是否为子集关系 private bool IsSubSet(List<string> origList, List<string> curList) { return curList.All(o => origList.Any(t => t == o)); } 2. 比较两个lis 阅读全文
posted @ 2021-01-13 11:02 竹影横扫窗 阅读(154) 评论(0) 推荐(0)