摘要: List<int> listA = new List<int> {1,2,3,5,7,9}; List<int> listB = new List<int> {13,4,17,29,2}; List<int> Result = listA.Union(listB).ToList<int>(); // 阅读全文
posted @ 2020-08-07 11:18 一介桃白白 阅读(3223) 评论(0) 推荐(1)
摘要: 1、添加NPOI包,添加引用。 2、前端调用方法 <button type="button" class="btn btn-primary" onclick="ExportToExcel()">导出Excel</button> <script type="text/javascript"> //导出 阅读全文
posted @ 2020-08-07 11:09 一介桃白白 阅读(1649) 评论(0) 推荐(0)