资源简介
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
namespace SerialPortLib
{
public class Code
{
private string _End = string.Empty;
public Code() { }
public Code(string end)
{
this._End = end;
}
///
/// 编码
///
///
///
public string Encode(string data)
{
return data + this._End;
}
///
/// 解码
///
///
///
public string Decode(string data)
{
int _EndIndex = data.LastIndexOf(this._End);
_EndIndex = _EndIndex < 0 ? data.Length :
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-07-04 10:02 thermometer\
文件 133 2013-07-04 10:02 thermometer\.gitignore
文件 14 2013-07-04 10:02 thermometer\README.md
目录 0 2013-07-04 10:02 thermometer\SerialPort\
文件 1355 2013-07-04 10:02 thermometer\SerialPort\Code.cs
文件 814 2013-07-04 10:02 thermometer\SerialPort\ISerialPort.cs
目录 0 2013-07-04 10:02 thermometer\SerialPort\Properties\
文件 1322 2013-07-04 10:02 thermometer\SerialPort\Properties\AssemblyInfo.cs
文件 3698 2013-07-04 10:02 thermometer\SerialPort\RS232.cs
文件 1850 2013-07-04 10:02 thermometer\SerialPort\RS232Params.cs
文件 2227 2013-07-04 10:02 thermometer\SerialPort\SerialPortLib.csproj
文件 1057 2013-07-04 10:02 thermometer\SerialPort\ToolMethods.cs
目录 0 2013-07-04 10:02 thermometer\SerialPort\bin\
目录 0 2013-07-04 10:02 thermometer\SerialPort\bin\Debug\
文件 9216 2013-07-04 10:02 thermometer\SerialPort\bin\Debug\SerialPort.dll
文件 28160 2013-07-04 10:02 thermometer\SerialPort\bin\Debug\SerialPort.pdb
目录 0 2013-07-04 10:02 thermometer\SerialPort\obj\
目录 0 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\
目录 0 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\Refactor\
文件 5120 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\Refactor\SerialPort.dll
文件 391 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\SerialPort.csproj.FileListAbsolute.txt
文件 9216 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\SerialPort.dll
文件 28160 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\SerialPort.pdb
文件 391 2013-07-04 10:02 thermometer\SerialPort\obj\Debug\SerialPortLib.csproj.FileListAbsolute.txt
文件 1877 2013-07-04 10:02 thermometer\Thermometer.sln
文件 35328 2013-07-04 10:02 thermometer\Thermometer.suo
目录 0 2013-07-04 10:02 thermometer\Thermometer\
文件 10254 2013-07-04 10:02 thermometer\Thermometer\About.Designer.cs
文件 3320 2013-07-04 10:02 thermometer\Thermometer\About.cs
文件 49069 2013-07-04 10:02 thermometer\Thermometer\About.resx
文件 3786 2013-07-04 10:02 thermometer\Thermometer\Form1.Designer.cs
............此处省略64个文件信息
- 上一篇:C#写的INI操作库LightINI-master
- 下一篇:C#制作的电子简历源码
相关资源
- 基恩士PLC通讯.rar
- 上位机与PLC通讯dll.zip
- Visual C#.NET串口通信及测控应用典型实
- C#Socket网络通信实现多人聊天
- C#网络通信程序设计
- 小米绿米网关局域网通信设备控制
- Modbus_TCP .net C# 通信
- C#编写的USB通信含源码
- C# 串口和以太网通讯超级调试助手 源
- UDP通信demoC#
- c#基于固定设备的 OneNet 物联网通信,
- 利用C#与三菱Q系列以太网通信
- C#串口通信工具源代码
- C#通信TCP/IP server client 简单
- 基于VS2010的C#简易串口示波器
- C# 松下PLC通讯协议标准模块
- C# 串口通讯Demo(VS2010)
- C# Socket多客户端异步通信
- C#实现串口操作包括读写串口,显示数
- TCP/IP通信c#例程
- C#串口编程基础入门
- C# SOCKET加密文件消息传输通信
- 松下PLC与上位机通信
- C#实现winform串口通信
- C# UDP通信,远程主机强迫关闭了一个
- C#窗体基于TCP的Socket多线程通信
- C#编写UDP通信
- C# 通过串口传递图片
- winform+串口+生成波形图+access
- 串口扫描枪 c# 最简程序源码
评论
共有 条评论