摘要:
此项功能是在读取word的时候 根据标题层级分出父子关系菜单 具体效果 递归实现 using System; using System.Collections.Generic; public class Menu { public int Id { get; set; } public int Pi 阅读全文
摘要:
遍历转树结构 { var list = new List<Foo>{ new Foo("111",1), new Foo("112",2), new Foo("113",2), new Foo("114",2), new Foo("115",3), new Foo("116",1), new Foo 阅读全文
摘要:
自增模式 自增模式 当设置 IDENTITY_INSERT 为 ON 时 , 必须把需要插入的列名列出来, 不然报错 正确例子: SET IDENTITY_INSERT (表名) ON insert into table(id,name) value(1,名称) SET IDENTITY_INSER 阅读全文
摘要:
 点击查看代码 ``` using Aspose.Words; using Aspose.Words.Ta 阅读全文
摘要:
``` C# public class CodeService { public string Build(BuildInputDto input) { var assembly = Assembly.GetExecutingAssembly(); var resourceName = assemb 阅读全文
摘要:
``` C# using System; using System.Collections; using System.Collections.Generic; using System.Threading; // Include Silverlight's managed resources #i 阅读全文