基本信息
源码名称:C#简单Socket通信
源码大小:0.17M
文件格式:.rar
开发语言:C#
更新时间:2023-07-18
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
C#简单Socket通信
Ssocket单对多,带有广播通信,Ssocket单对多,带有广播通信Ssocket单对多,带有广播通信Ssocket单对多,带有广播通信


文件清单
└── ldh
    ├── App
    │   ├── Client
    │   │   ├── ClientApp.exe
    │   │   └── Config.ini
    │   └── Server
    │       └── ServerTcpConls.exe
    ├── Code
    │   ├── ClientApp
    │   │   ├── ClientApp
    │   │   │   ├── bin
    │   │   │   │   ├── Debug
    │   │   │   │   │   ├── ClientApp.exe
    │   │   │   │   │   ├── ClientApp.pdb
    │   │   │   │   │   ├── ClientApp.vshost.exe
    │   │   │   │   │   └── Config.ini
    │   │   │   │   └── Release
    │   │   │   │       ├── ClientApp.exe
    │   │   │   │       ├── ClientApp.pdb
    │   │   │   │       ├── ClientApp.vshost.exe
    │   │   │   │       └── Config.ini
    │   │   │   ├── ClientApp.csproj
    │   │   │   ├── clsFormat.cs
    │   │   │   ├── frmBase.cs
    │   │   │   ├── frmBase.Designer.cs
    │   │   │   ├── frmBase.resx
    │   │   │   ├── frmClient.cs
    │   │   │   ├── frmClient.Designer.cs
    │   │   │   ├── frmClient.resx
    │   │   │   ├── frmOpacity.cs
    │   │   │   ├── frmOpacity.Designer.cs
    │   │   │   ├── frmOpacity.resx
    │   │   │   ├── frmSendMessage.cs
    │   │   │   ├── frmSendMessage.Designer.cs
    │   │   │   ├── frmSendMessage.resx
    │   │   │   ├── obj
    │   │   │   │   ├── ClientApp.csproj.FileListAbsolute.txt
    │   │   │   │   ├── Debug
    │   │   │   │   │   ├── ClientApp.csproj.GenerateResource.Cache
    │   │   │   │   │   ├── ClientApp.exe
    │   │   │   │   │   ├── ClientApp.frmBase.resources
    │   │   │   │   │   ├── ClientApp.frmClient.resources
    │   │   │   │   │   ├── ClientApp.frmOpacity.resources
    │   │   │   │   │   ├── ClientApp.frmSendMessage.resources
    │   │   │   │   │   ├── ClientApp.pdb
    │   │   │   │   │   ├── ClientApp.Properties.Resources.resources
    │   │   │   │   │   ├── ClientApp.Res.resources
    │   │   │   │   │   ├── Refactor
    │   │   │   │   │   └── TempPE
    │   │   │   │   │       └── Res.Designer.cs.dll
    │   │   │   │   └── Release
    │   │   │   │       ├── ClientApp.csproj.GenerateResource.Cache
    │   │   │   │       ├── ClientApp.exe
    │   │   │   │       ├── ClientApp.frmBase.resources
    │   │   │   │       ├── ClientApp.frmClient.resources
    │   │   │   │       ├── ClientApp.frmOpacity.resources
    │   │   │   │       ├── ClientApp.frmSendMessage.resources
    │   │   │   │       ├── ClientApp.pdb
    │   │   │   │       ├── ClientApp.Properties.Resources.resources
    │   │   │   │       ├── ClientApp.Res.resources
    │   │   │   │       ├── Refactor
    │   │   │   │       └── TempPE
    │   │   │   │           └── Res.Designer.cs.dll
    │   │   │   ├── Program.cs
    │   │   │   ├── Properties
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Resources.Designer.cs
    │   │   │   │   ├── Resources.resx
    │   │   │   │   ├── Settings.Designer.cs
    │   │   │   │   └── Settings.settings
    │   │   │   ├── Res.Designer.cs
    │   │   │   ├── Resources
    │   │   │   │   └── Icon1.ico
    │   │   │   └── Res.resx
    │   │   ├── ClientApp.sln
    │   │   └── ClientApp.suo
    │   └── ServerTcpConls
    │       ├── ServerTcpConls
    │       │   ├── bin
    │       │   │   ├── Debug
    │       │   │   │   ├── ServerTcpConls.exe
    │       │   │   │   ├── ServerTcpConls.pdb
    │       │   │   │   └── ServerTcpConls.vshost.exe
    │       │   │   └── Release
    │       │   │       ├── ServerTcpConls.exe
    │       │   │       ├── ServerTcpConls.pdb
    │       │   │       └── ServerTcpConls.vshost.exe
    │       │   ├── obj
    │       │   │   ├── Debug
    │       │   │   │   ├── Refactor
    │       │   │   │   ├── ServerTcpConls.exe
    │       │   │   │   ├── ServerTcpConls.pdb
    │       │   │   │   └── TempPE
    │       │   │   ├── Release
    │       │   │   │   ├── ServerTcpConls.exe
    │       │   │   │   ├── ServerTcpConls.pdb
    │       │   │   │   └── TempPE
    │       │   │   └── ServerTcpConls.csproj.FileListAbsolute.txt
    │       │   ├── Program.cs
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   └── ServerTcpConls.csproj
    │       ├── ServerTcpConls.sln
    │       └── ServerTcpConls.suo
    └── 说明.txt

31 directories, 74 files