笔记
潘诺西亚的火山
保持热爱,奔赴星海
展开
-
PLC ST语言经典电路之 一键启停 和 时钟脉冲
PLC原创 2023-11-27 22:20:03 · 1442 阅读 · 0 评论 -
雷赛运动控制卡例子
#region 自动运行流程 private void AutoRunProcess() { AddLog(0, "系统归零完成,等待触发"); //初始化当前步骤 CurrentStep = RunStep.RunReady; bool fRun = false; bool fOver = false; in...原创 2022-03-01 21:50:20 · 2812 阅读 · 0 评论 -
Linq的应用例子
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;namespace LinqDemo{ class Program { #region 示例1:不使用LINQ查询数组 static void Main(string[] args) { in原创 2021-12-30 01:03:45 · 405 阅读 · 0 评论 -
用Nmodbus 读取 Modbus TCP
写一个 NmodbusHelperusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Net.Sockets;using System.Net;using Modbus.Device;using thinger.cn;namespace NmodbusHelper{ public c原创 2021-12-28 03:00:28 · 1728 阅读 · 2 评论 -
nuget的几个地址
NuGet源地址https://nuget.org/api/v2/https://api.nuget.org/v3/index.json原创 2021-12-27 20:57:08 · 2334 阅读 · 1 评论 -
常用的SQL语句
USE [master]GOIF EXISTS(SELECT * FROM sysdatabases WHERE NAME='ScadaData')BEGIN DROP DATABASE ScadaData --如果数据库存在先删掉数据库ENDGOCREATE DATABASE ScadaDataONPRIMARY --创建主数据库文件( NAME='ScadaData', FILENAME='E:\ScadaData.mdf', SIZE=5MB原创 2021-12-27 02:52:21 · 571 阅读 · 0 评论 -
泛型类,泛型接口
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace generic{class Test<T1, T2>//构造泛型类,T1,T2为类型参数{ public T1 var1; public T2 var2; public void print() {原创 2021-12-12 23:49:35 · 113 阅读 · 0 评论