摘要:
internal class Program { //static void Main(string[] args) //{ // byte[] arr = new byte[1024]; // 1.创建socket对象 // Socket socket = new Socket(AddressFa 阅读全文
摘要:
public class UdsClient { public Socket _socket { get; set; } public UnixDomainSocketEndPoint endPoint = null; public SocketInfo socketInfo = null; pub 阅读全文
摘要:
一、参考源文链接 1、https://www.likecs.com/show-897836.html 2、https://blog.csdn.net/weixin_43614067/article/details/115373776 二、Quartz基本使用 public class Job1 : 阅读全文
摘要:
http://blog.baibaota.com/1575.html 阅读全文
摘要:
var tableObj = table.render({ id: 'list_table', elem: '#list_table', url: '', align: "center", cols: [[ //表头 {type: 'checkbox'}, {type: 'numbers', tit 阅读全文
摘要:
1、nuget 安装 iTextSharp (V4.1.6) to .NET Core. 2、code public DataTable ToDataTable<T>(IEnumerable<T> collection, Dictionary<string, string> columnMaps = 阅读全文
摘要:
https://blog.csdn.net/FantasiaX/article/details/1636913 阅读全文
摘要:
Ubuntu是一个Linux操作系统,修改密码和用户名是有危险的动作,请谨慎修改。 一、Ubuntu修改密码和用户名 Ubuntu更改密码步骤:1、进入Ubuntu,打开一个终端,输入 sudo su转为root用户。 注意,必须先转为root用户!!!2、sudo passwd user(user 阅读全文
摘要:
创建分支: $ git branch mybranch切换分支: $ git checkout mybranch创建并切换分支: $ git checkout -b mybranch 更新master主线上的东西到该分支上:$git rebase master 切换到master分支:$git ch 阅读全文