2018年8月3日

Word操作封装类

摘要: 实现: public class WordOperation { private Microsoft.Office.Interop.Word.ApplicationClass oWordApplic; // a reference to Word application private Micros 阅读全文

posted @ 2018-08-03 07:14 林语168 阅读(330) 评论(0) 推荐(0) 编辑

2018年7月12日

SocketOperation网络通信封装

摘要: 1 public sealed class SocketOperation 2 { 3 string strBufferLeft = string.Empty; 4 5 public SocketOperation() 6 { 7 } 8 9 /**/ 10 /// <summary> 11 /// 阅读全文

posted @ 2018-07-12 22:21 林语168 阅读(244) 评论(0) 推荐(0) 编辑

2018年4月24日

XML操作封装 - 实现预格式的XML的读写

摘要: XML用于作配置文件。 该封装XML需满足以下格式 <Configs> <Config Name="XXX"> </Config Name="XXX"> <Config Name="YYY"> </Config Name="YYY"> </Configs> 1 public class XMLOpe 阅读全文

posted @ 2018-04-24 20:17 林语168 阅读(679) 评论(0) 推荐(0) 编辑

串口通信封装 - 一定时间内等待关键字

摘要: 以下是常用的串口通信的封装,主要调用了System.IO.Ports里面的方法。 串口接收字符串或者字节数组时,根据在一定时间内是否接收到关键字符串判断串口接收完成。 1 public class SerialPortOperation 2 { 3 SerialPort serialPort = n 阅读全文

posted @ 2018-04-24 18:12 林语168 阅读(294) 评论(0) 推荐(0) 编辑

导航