摘要:C# 合并PDF文件 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using
阅读全文
03 2022 档案
摘要:List<Model> strList = new List<Model>() { new Model(){Id=1,Name = "张三"}, new Model(){Id=11,Name = "张三1"}, new Model(){Id=2,Name = "李四"}, new Model(){I
阅读全文
摘要:public class Model { public int Id { get; set; } public string Name { get; set; } } private static List<Model> LinqIn() { List<Model> strList = new Li
阅读全文