2023年1月11日

C# List间的交集并集差集

摘要: 一、简单类型List的交集并集差集 1、先定义两个简单类型的List List<int> listA = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8 }; List<int> listB = new List<int>() { 1, 2, 3, 4, 9 }; 阅读全文

posted @ 2023-01-11 14:05 糯米白白 阅读(6771) 评论(0) 推荐(2) 编辑

导航