摘要: 当我们要对字符串做多次变化时,我们可以考虑用StringBuilder StringBuilder sb=new StringBuilder(); sb.Append("111");//追加字符串 sb.AppendLine("222");//追加一行字符串 sb.Insert(2,"ddc");/ 阅读全文
posted @ 2022-09-27 14:52 ZerryLuo 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 方法一:通过注入 IConfiguration 服务接口来读取 appsetting.json如下: { "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.L 阅读全文
posted @ 2022-09-27 13:57 ZerryLuo 阅读(178) 评论(0) 推荐(0) 编辑