摘要:
一、概念讲解: 1、值类型: 包括:sbyte、short、int、long、float、double、decimal(以上值类型有符号) byte、ushort、uint、ulong(以上值类型无符号) bool、char 2、引用类型: 包括:对象类型、动态类型、字符串类型 二、具体区别: 1、 阅读全文
摘要:
代码实现 复制到侧边栏 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> < 阅读全文
摘要:
目录问题描述查找原因SerialPort类Open()方法SerialPort类Close()方法死锁原因解决死锁总结 问题描述 前几天用SerialPort类写一个串口的测试程序,关闭串口的时候会让界面卡死。 参考博客windows程序界面卡死的原因,得出界面卡死原因:主线程和其他的线程由于资源或 阅读全文