上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页
摘要: 定义 Excel专用特性名 (应用导出表格列名) 引入Nuget包 1.Microsoft.AspNetCore.Hosting 2.DotNetCore.NPOI 引入包 using NPOI.SS.UserModel;using NPOI.XSSF.UserModel;using System. 阅读全文
posted @ 2022-10-15 12:42 .net&new 阅读(195) 评论(0) 推荐(0) 编辑
摘要: //如果类库是Service var Services = Assembly.Load("Service").GetTypes().Where(w => w.Name.Contains("Service"));foreach (var item in Services){ var name = it 阅读全文
posted @ 2022-10-13 21:30 .net&new 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 第三步: 第二步:先配置,网卡为DHCP和 第一步骤: 阅读全文
posted @ 2022-09-21 22:20 .net&new 阅读(16) 评论(0) 推荐(0) 编辑
摘要: var factory = new ConnectionFactory(); factory.HostName = "localhost"; factory.UserName = "guest"; factory.Password = "guest"; using (var connection = 阅读全文
posted @ 2022-09-19 21:54 .net&new 阅读(19) 评论(0) 推荐(0) 编辑
摘要: rabbitmq下载地址https://github.com/rabbitmq/rabbitmq-server/releaseserlang下载地址https://github.com/rabbitmq/erlang-rpm/releases 如:CentOS7可以选择 rabbitmq-serve 阅读全文
posted @ 2022-09-19 21:51 .net&new 阅读(772) 评论(0) 推荐(0) 编辑
摘要: 对操作的实时性要求不高,而需要执行的任务极为耗时; 存在异构系统间的整合; 转载:https://www.cnblogs.com/zxtceq/p/7542491.html 阅读全文
posted @ 2022-09-19 21:49 .net&new 阅读(15) 评论(0) 推荐(0) 编辑
摘要: rabbitmq - C#将ReadOnlyMemory转换为byte [] 发布于 2020-07-31 11:16:05 给定ReadOnlyMemory结构,我想将流转换为字符串 我有以下代码: var body = ea.Body; //ea.Body is of Type ReadOnly 阅读全文
posted @ 2022-09-19 21:46 .net&new 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1:安装依赖包 2:建立一个类Schedule继承Job /// <summary> /// 定时任务 /// </summary> public class Schedule : Job { /// <summary> /// 任务开始时间 /// </summary> private const 阅读全文
posted @ 2022-09-16 21:38 .net&new 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 这里说下,SDK 和 RunTime 的区别:1、SDK 是用来开发 NetCore 的,内部捆绑了 Runtime 运行时;2、但是如果只想运行 NetCore 项目的话,只需要在服务器中安装 Runtime 运行时即可; 怎么判断安装成功了呢?直接运行命令,如果有结果证明成功了: 阅读全文
posted @ 2022-09-15 21:54 .net&new 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 1:安装依赖包 2:Program.cs注入 引入命名空间: using Microsoft.AspNetCore.Authentication.JwtBearer;using Microsoft.IdentityModel.Tokens; var configuration = builder.C 阅读全文
posted @ 2022-09-15 21:19 .net&new 阅读(912) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页