本例是基于C#开发的桌面TCP网络助手,可以进行TCP网络调试
【核心代码】
TCP网络调试助手
├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── MySocket.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TCP网络调试助手.csproj ├── TCP网络调试助手.csproj.user ├── TCP网络调试助手.sln ├── TCP网络调试助手_TemporaryKey.pfx ├── bin │ └── Debug │ ├── TCP网络调试助手.application │ ├── TCP网络调试助手.exe │ ├── TCP网络调试助手.exe.config │ ├── TCP网络调试助手.exe.manifest │ ├── TCP网络调试助手.pdb │ └── app.publish │ └── TCP网络调试助手.exe └── obj └── Debug ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── TCP网络调试助手.Form1.resources ├── TCP网络调试助手.Properties.Resources.resources ├── TCP网络调试助手.application ├── TCP网络调试助手.csproj.CoreCompileInputs.cache ├── TCP网络调试助手.csproj.FileListAbsolute.txt ├── TCP网络调试助手.csproj.GenerateResource.cache ├── TCP网络调试助手.csprojAssemblyReference.cache ├── TCP网络调试助手.exe ├── TCP网络调试助手.exe.manifest ├── TCP网络调试助手.pdb └── TempPE
|