摘要: internal class Program { //static void Main(string[] args) //{ // byte[] arr = new byte[1024]; // 1.创建socket对象 // Socket socket = new Socket(AddressFa 阅读全文
posted @ 2023-04-04 23:05 摩诘 阅读(373) 评论(0) 推荐(0) 编辑
摘要: public class UdsClient { public Socket _socket { get; set; } public UnixDomainSocketEndPoint endPoint = null; public SocketInfo socketInfo = null; pub 阅读全文
posted @ 2023-01-03 14:11 摩诘 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 一、参考源文链接 1、https://www.likecs.com/show-897836.html 2、https://blog.csdn.net/weixin_43614067/article/details/115373776 二、Quartz基本使用 public class Job1 : 阅读全文
posted @ 2022-12-15 16:56 摩诘 阅读(355) 评论(0) 推荐(0) 编辑
摘要: http://blog.baibaota.com/1575.html 阅读全文
posted @ 2022-04-15 11:22 摩诘 阅读(63) 评论(0) 推荐(0) 编辑
摘要: var tableObj = table.render({ id: 'list_table', elem: '#list_table', url: '', align: "center", cols: [[ //表头 {type: 'checkbox'}, {type: 'numbers', tit 阅读全文
posted @ 2022-04-12 15:06 摩诘 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 1、nuget 安装 iTextSharp (V4.1.6) to .NET Core. 2、code public DataTable ToDataTable<T>(IEnumerable<T> collection, Dictionary<string, string> columnMaps = 阅读全文
posted @ 2022-03-31 13:19 摩诘 阅读(204) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/FantasiaX/article/details/1636913 阅读全文
posted @ 2022-02-08 15:47 摩诘 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Ubuntu是一个Linux操作系统,修改密码和用户名是有危险的动作,请谨慎修改。 一、Ubuntu修改密码和用户名 Ubuntu更改密码步骤:1、进入Ubuntu,打开一个终端,输入 sudo su转为root用户。 注意,必须先转为root用户!!!2、sudo passwd user(user 阅读全文
posted @ 2021-09-27 11:45 摩诘 阅读(24554) 评论(0) 推荐(0) 编辑
摘要: 创建分支: $ git branch mybranch切换分支: $ git checkout mybranch创建并切换分支: $ git checkout -b mybranch 更新master主线上的东西到该分支上:$git rebase master 切换到master分支:$git ch 阅读全文
posted @ 2021-06-04 17:26 摩诘 阅读(56) 评论(0) 推荐(0) 编辑
摘要: https://www.sonarqube.org/ 阅读全文
posted @ 2021-06-03 10:00 摩诘 阅读(27) 评论(0) 推荐(0) 编辑