资源简介

C#串口通信工具【源码】


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;

namespace SerialPort
{
    //十六进制分隔符
    public enum HexSeparator
    {
        None
        Space
        OX
        Ox
    }

    /// 
    /// 关于计算进制类
    /// 


    class Algorithm
    {

        #region 数值之间的进制转换

        //十进制转十六进制
        public string DecToHex(int dec)
        {
          return Convert.ToString(dec16).ToUpper();//转换为十六进制
        }

        ///十六进制转换为十进制
        private String HexToDec(string hex)
        {
          return  Convert.ToInt32(hex16).ToString ();
        }

        #endregion

        #region 添加、去掉16进制字符串中的隔离符
        
        /// 添加16进制字符串中的隔离符
        private static string AddSe

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8816  2014-03-13 12:42  SerialPort\SerialPort\Algorithm.cs

     文件        144  2012-08-19 16:27  SerialPort\SerialPort\app.config

     文件      33792  2014-03-13 16:50  SerialPort\SerialPort\bin\Release\SerialPort.exe

     文件        144  2012-08-19 16:27  SerialPort\SerialPort\bin\Release\SerialPort.exe.config

     文件      44544  2014-03-13 16:50  SerialPort\SerialPort\bin\Release\SerialPort.pdb

     文件      11600  2014-03-13 16:42  SerialPort\SerialPort\bin\Release\SerialPort.vshost.exe

     文件        144  2012-08-19 16:27  SerialPort\SerialPort\bin\Release\SerialPort.vshost.exe.config

     文件        490  2012-06-06 02:06  SerialPort\SerialPort\bin\Release\SerialPort.vshost.exe.manifest

     文件        766  2011-05-24 22:27  SerialPort\SerialPort\ComTone.ico

     文件      12123  2014-03-13 16:50  SerialPort\SerialPort\Form1.cs

     文件      54754  2014-03-13 15:32  SerialPort\SerialPort\Form1.Designer.cs

     文件       7857  2014-03-13 15:32  SerialPort\SerialPort\Form1.resx

     文件      88576  2012-08-18 23:56  SerialPort\SerialPort\obj\x86\Debug\AxInterop.CWUIControlsLib.dll

     文件      16797  2013-08-28 09:19  SerialPort\SerialPort\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6657  2013-06-26 08:18  SerialPort\SerialPort\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        566  2012-08-22 12:42  SerialPort\SerialPort\obj\x86\Debug\GenerateResource.read.1.tlog

     文件       1354  2012-08-22 12:42  SerialPort\SerialPort\obj\x86\Debug\GenerateResource.write.1.tlog

     文件     166400  2012-08-21 09:45  SerialPort\SerialPort\obj\x86\Debug\Interop.CWUIControlsLib.dll

     文件      16933  2012-08-21 10:29  SerialPort\SerialPort\obj\x86\Debug\ResolveAssemblyReference.cache

     文件       6414  2013-08-28 09:19  SerialPort\SerialPort\obj\x86\Debug\SerialPort.csproj.FileListAbsolute.txt

     文件        975  2012-12-05 10:10  SerialPort\SerialPort\obj\x86\Debug\SerialPort.csproj.GenerateResource.Cache

     文件        809  2013-08-28 09:19  SerialPort\SerialPort\obj\x86\Debug\SerialPort.csproj.ResolveComReference.cache

     文件      13380  2013-06-26 08:01  SerialPort\SerialPort\obj\x86\Debug\SerialPort.csprojResolveAssemblyReference.cache

     文件      40960  2013-06-26 08:18  SerialPort\SerialPort\obj\x86\Debug\SerialPort.exe

     文件       4984  2012-08-22 12:42  SerialPort\SerialPort\obj\x86\Debug\SerialPort.Form1.resources

     文件      69120  2013-06-26 08:18  SerialPort\SerialPort\obj\x86\Debug\SerialPort.pdb

     文件        180  2012-08-21 14:43  SerialPort\SerialPort\obj\x86\Debug\SerialPort.Properties.Resources.resources

     文件       4608  2012-08-19 16:27  SerialPort\SerialPort\obj\x86\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件      10812  2013-08-28 09:27  SerialPort\SerialPort\obj\x86\Release\DesignTimeResolveAssemblyReferences.cache

     文件       6397  2014-03-13 16:50  SerialPort\SerialPort\obj\x86\Release\DesignTimeResolveAssemblyReferencesInput.cache

............此处省略33个文件信息

评论

共有 条评论