
C#
ListenAlone
这个作者很懒,什么都没留下…
展开
-
C# 定时器
static void Main(string[] args) { SerialPortWriteDeadCheck(); while (true) { Thread.Sleep(100); System.Diagnostics.Debug.WriteLine("Run..."); } } ...原创 2021-04-26 13:43:28 · 220 阅读 · 0 评论 -
c#/ c++ 读取二进制结构体数据
using System; using System.Collections.Generic; using System.IO; using System.Runtime.InteropServices; namespace FuntionTest { struct RulerPosition { public int rulerX; public int rulerY; public int w; public int h.原创 2021-04-08 15:11:00 · 1128 阅读 · 1 评论