03 2022 档案
摘要:1.添加命名空间 using System.Reflection; 2.把dll加载入项目 Assembly ty = Assembly.Load("ClassLibraryTest");//不加dll后缀,在core里面使用容易报错 Assembly ty = Assembly.LoadFrom(
阅读全文
摘要:1. 添加引用 using Microsoft.Extensions.Configuration;using Microsoft.Extensions.Configuration.Json; 列子: { "compilerOptions": { "noImplicitAny": false, "no
阅读全文
摘要:1.取m,n行数据 select top @pageSize id from tableName where id not in ( select top (@pageNo-1)*@pageSize id from tableName )--SQL Server select * from arti
阅读全文
摘要:1.Engine var engine = new Engine(); string file = Server.MapPath("../Script/challenge_6.js"); StreamReader streamReader = new StreamReader(file); stri
阅读全文