• 大小: 0.07M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2024-04-25
  • 语言: C#
  • 标签: tcp  简单  工具  通讯  

资源简介

实现网口通讯

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 客户端33
{
    class cMyMathClass
    {
        public static ArrayList Str16ToArrayList(string strIn)//字符串拆分
        {
            string sParse = ““;
            ArrayList myAL = new ArrayList();

            int i = 0;
            foreach (char cc in strIn)
            {
                i++;
                if (cc == ‘ ‘ || sParse.Length == 2)
                {
                    myAL.Add(sParse);
                    if (sParse.Length == 2 && cc != ‘ ‘)//两个字符
                    {
                        sParse = Convert.ToString(cc);
                    }
                    else
                    {
                        sParse = ““;
                    }
                }
                else
                {
                    sParse += Convert.ToString(cc);
                    if (i == strIn.Length && cc != ‘ ‘)//末尾字符
                    {
                        myAL.Add(sParse);
                    }
                }
            }
            return myAL;
        }

        public static string strAddSpace(string strInData)//以两个或空格问区分字符串增加空格
        {
            string strParse = ““;
            string strAddResult = ““;
            int i = 0;
            foreach (char cc in strInData)
            {
                i++;
                if (cc == ‘ ‘ || strParse.Length == 2)
                {
                    strAddResult += strParse + “ “;
                    if (strParse.Length == 2 && cc != ‘ ‘)//两个字符
                    {
                        strParse = Convert.ToString(cc);
                    }
                    else
                    {
                        strParse = ““;
                    }
                }
                else
                {
                    strParse += Convert.ToString(cc);
                }
                if (i == strInData.Length && cc != ‘ ‘)//末尾字符
                {
                    strAddResult += strParse;
                }

            }

            return strAddResult;

        }

        public static string strSubSpace(string strInData)//去除字符串中空格并把单个字符串前面加0
        {
            string strParse = “ “ + strInData + “ “;//将头和尾组合成一样的形式
            string strParseTemp = ““;
            string strSubResult = ““;
            //int i = 0;

            for (int i = 0; i < strParse.Length; i++)
            {
                //char myChar
                /*if ((i == 0) && (strParse[1]==‘ ‘))
                {
                    strParseTemp = “0“ + strParse[0].ToString();
                    strSubResult += strParseTemp;
                }
                else*/
                if ((i > 0) && (i < strInData.Length + 1))
                {
                    if ((strParse[i] != ‘ ‘) && (strParse[i - 1] == ‘ ‘) && (strParse[i + 1] == ‘ ‘)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-11-19 16:40  客户端33\
     目录           0  2020-11-25 15:54  客户端33\客户端33\
     文件         187  2020-11-19 16:39  客户端33\客户端33\App.config
     文件        8786  2020-11-25 15:54  客户端33\客户端33\Form1.Designer.cs
     文件       11825  2020-11-25 15:54  客户端33\客户端33\Form1.cs
     文件        5817  2020-11-25 15:54  客户端33\客户端33\Form1.resx
     文件         534  2020-11-19 16:39  客户端33\客户端33\Program.cs
     目录           0  2020-11-19 16:39  客户端33\客户端33\Properties\
     文件        1452  2020-11-19 16:39  客户端33\客户端33\Properties\AssemblyInfo.cs
     文件        2852  2020-11-19 16:39  客户端33\客户端33\Properties\Resources.Designer.cs
     文件        5612  2020-11-19 16:39  客户端33\客户端33\Properties\Resources.resx
     文件        1098  2020-11-19 16:39  客户端33\客户端33\Properties\Settings.Designer.cs
     文件         249  2020-11-19 16:39  客户端33\客户端33\Properties\Settings.settings
     目录           0  2020-11-19 16:39  客户端33\客户端33\bin\
     目录           0  2020-11-19 17:25  客户端33\客户端33\bin\Debug\
     文件       17408  2020-11-25 15:54  客户端33\客户端33\bin\Debug\客户端33.exe
     文件         187  2020-11-19 16:39  客户端33\客户端33\bin\Debug\客户端33.exe.config
     文件       42496  2020-11-25 15:54  客户端33\客户端33\bin\Debug\客户端33.pdb
     文件       23168  2020-11-25 16:16  客户端33\客户端33\bin\Debug\客户端33.vshost.exe
     文件         187  2020-11-19 16:39  客户端33\客户端33\bin\Debug\客户端33.vshost.exe.config
     文件         490  2013-03-18 17:00  客户端33\客户端33\bin\Debug\客户端33.vshost.exe.manifest
     文件        8636  2020-11-25 10:12  客户端33\客户端33\cMyMathClass.cs
     目录           0  2020-11-19 16:39  客户端33\客户端33\obj\
     目录           0  2020-11-25 15:54  客户端33\客户端33\obj\Debug\
     文件        1453  2020-11-24 13:12  客户端33\客户端33\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6939  2020-11-25 16:15  客户端33\客户端33\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2020-11-25 16:17  客户端33\客户端33\obj\Debug\TempPE\
     文件           0  2020-11-19 16:39  客户端33\客户端33\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
     文件           0  2020-11-19 16:39  客户端33\客户端33\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
     文件           0  2020-11-19 16:39  客户端33\客户端33\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
     文件         180  2020-11-25 15:54  客户端33\客户端33\obj\Debug\客户端33.Form1.resources
............此处省略9个文件信息

评论

共有 条评论