摘要:https://learn.microsoft.com/zh-cn/dotnet/api/system.net.sockets.tcplistener?view=netframework-4.8.1 TCP编程的服务器端一般步骤是: 1、创建一个socket,用函数socket()。 2、设置soc
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Threadi
阅读全文
摘要:Ping ping = new Ping(); if (ping.Send(SystemPlcVar._ip).Status == IPStatus.Success) { return true; } else { return false; }
阅读全文
摘要:private void DMainForm_FormClosing(object sender, FormClosingEventArgs e) { if (e.CloseReason == CloseReason.UserClosing) { //设置成True,不会被关闭程序,给出提示框 e.
阅读全文
摘要:单句注释符号:# 批量注释符号:/* */ mysql客户端工具HeidiSQL,下载地址:Download HeidiSQL
阅读全文
摘要:(25条消息) 调试工具之UDP/TCP网络调试助手NetAssist_随意一局-小猩猩的博客-CSDN博客 下载地址 链接:https://pan.baidu.com/s/1az9ogJQrb4TqWK632cvCdw 密码:k6wp
阅读全文
摘要:(25条消息) C# winform 弹出输入框_c#输入框_鉴泉~Richarlie的博客-CSDN博客
阅读全文
摘要:1、去官网下载这两个安装包 https://www.sqllite.org/download.html (sqlite-dll根据需要选择 32/64-bit Dll) sqlite-tools 是必选 2、将压缩包放到C盘下的sqlite3目录 (网上有些命名是sqlite,和后面的环境变量路径有
阅读全文