嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C# socket编程实例
在visual studio环境下开发。使用c#语言。程序中使用了线程,代理。实现了客户端和服务器的通信。只是个小例子。
.
├── C# socket编程实例_socketProject.rar
└── ServerThread
├── ClientThread
│ ├── ClientThread.csproj
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ └── Debug
│ │ ├── ClientThread.exe
│ │ └── ClientThread.pdb
│ └── obj
│ └── Debug
│ ├── ClientThread.Form1.resources
│ ├── ClientThread.Properties.Resources.resources
│ ├── ClientThread.csproj.FileListAbsolute.txt
│ ├── ClientThread.csproj.GenerateResource.Cache
│ ├── ClientThread.exe
│ ├── ClientThread.pdb
│ ├── Refactor
│ └── TempPE
├── ServerThread
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ServerThread.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── ServerThread.exe
│ │ ├── ServerThread.pdb
│ │ ├── ServerThread.vshost.exe
│ │ └── ServerThread.vshost.exe.manifest
│ └── obj
│ └── Debug
│ ├── ServerThread.Form1.resources
│ ├── ServerThread.Properties.Resources.resources
│ ├── ServerThread.csproj.FileListAbsolute.txt
│ ├── ServerThread.csproj.GenerateResource.Cache
│ ├── ServerThread.exe
│ ├── ServerThread.pdb
│ └── TempPE
├── ServerThread.sln
├── ServerThread.suo
└── SocketProject
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── SocketProject.csproj
├── bin
│ └── Debug
└── obj
└── Debug
└── TempPE
23 directories, 44 files