嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
c# socket 异步套接字编程(winform重制版)
这是我个人根据网上规整的一些类自制的一个小软件!...但是充分的展示了如何使用socket的套接字编程 由于需要用户端是用.net 1.1 服务端是用.net 2.0写的 如有错误和不妥的地方请联系我!!Fxbeauty@sohu.com
.
├── ExeBand.suo
├── TxdSockstServer
│ ├── TxdSockstServer
│ │ ├── Class
│ │ │ ├── Coder.cs
│ │ │ ├── DatagramResolver.cs
│ │ │ ├── NetEventArgs.cs
│ │ │ ├── Session.cs
│ │ │ ├── SessionId.cs
│ │ │ ├── TcpSvr.cs
│ │ │ └── TestTcpSvr.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TxdSockstServer.csproj
│ │ ├── TxdSockstServer.csproj.user
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── TxdSockstServer.exe
│ │ │ ├── TxdSockstServer.pdb
│ │ │ └── TxdSockstServer.vshost.exe
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── TempPE
│ │ │ ├── TxdSockstServer.Form1.resources
│ │ │ ├── TxdSockstServer.Properties.Resources.resources
│ │ │ ├── TxdSockstServer.csproj.GenerateResource.Cache
│ │ │ ├── TxdSockstServer.exe
│ │ │ └── TxdSockstServer.pdb
│ │ └── TxdSockstServer.csproj.FileListAbsolute.txt
│ ├── TxdSockstServer.sln
│ └── TxdSockstServer.suo
├── c# socket 异步套接字编程(winform重制版).rar
└── tcpsocket
├── App.ico
├── AssemblyInfo.cs
├── Form1.cs
├── Form1.resx
├── bin
│ └── Debug
│ ├── tcpsocket.dll
│ ├── tcpsocket.exe
│ └── tcpsocket.pdb
├── class
│ ├── AppSocketClient
│ │ └── AppSocketClient
│ │ ├── AppSocketClient
│ │ │ ├── AppSocketClient.csproj
│ │ │ ├── AppSocketClient.csproj.user
│ │ │ ├── Coder.cs
│ │ │ ├── DatagramResolver.cs
│ │ │ ├── NetEventArgs.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ └── Resources.resx
│ │ │ ├── Session.cs
│ │ │ ├── SessionId.cs
│ │ │ ├── TcpCli.cs
│ │ │ ├── TcpSvr.cs
│ │ │ ├── TestTcpClient.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── AppSocketClient.exe
│ │ │ │ ├── AppSocketClient.pdb
│ │ │ │ └── AppSocketClient.vshost.exe
│ │ │ └── obj
│ │ │ ├── AppSocketClient.csproj.FileList.txt
│ │ │ ├── AppSocketClient.csproj.FileListAbsolute.txt
│ │ │ └── Debug
│ │ │ ├── AppSocketClient.exe
│ │ │ ├── AppSocketClient.pdb
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── AppSocketClient.sln
│ │ └── AppSocketClient.suo
│ └── AppSocketServer
│ └── AppSocketServer
│ ├── AppSocketServer
│ │ ├── AppSocketServer.csproj
│ │ ├── Coder.cs
│ │ ├── DatagramResolver.cs
│ │ ├── NetEventArgs.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Session.cs
│ │ ├── SessionId.cs
│ │ ├── TcpSvr.cs
│ │ ├── TestTcpSvr.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── AppSocketServer.exe
│ │ │ ├── AppSocketServer.pdb
│ │ │ └── AppSocketServer.vshost.exe
│ │ └── obj
│ │ ├── AppSocketServer.csproj.FileList.txt
│ │ ├── AppSocketServer.csproj.FileListAbsolute.txt
│ │ └── Debug
│ │ ├── AppSocketServer.exe
│ │ ├── AppSocketServer.pdb
│ │ └── TempPE
│ ├── AppSocketServer.sln
│ └── AppSocketServer.suo
├── obj
│ └── Debug
│ ├── TempPE
│ ├── tcpsocket.Form1.resources
│ ├── tcpsocket.dll
│ ├── tcpsocket.exe
│ ├── tcpsocket.pdb
│ ├── tcpsocket.projdata
│ └── temp
├── tcpclass
│ ├── Coder.cs
│ ├── DatagramResolver.cs
│ ├── NetEventArgs.cs
│ ├── Session.cs
│ ├── SessionId.cs
│ ├── TcpCli.cs
│ ├── TcpSvr.cs
│ └── TestTcpClient.cs
├── tcpsocket.csproj
├── tcpsocket.csproj.user
├── tcpsocket.sln
└── tcpsocket.suo
36 directories, 96 files