嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#网络版五子棋对战
利用socket通信实现C/S模式的网络通信,并且根据通信的指令实现五子棋对弈。
.
├── C#网络版五子棋对战源码.rar
└── 源代码
├── GameClient
│ ├── GameClient
│ │ ├── DotColor.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── FormPlaying.cs
│ │ ├── FormPlaying.designer.cs
│ │ ├── FormPlaying.resx
│ │ ├── FormRoom.cs
│ │ ├── FormRoom.designer.cs
│ │ ├── FormRoom.resx
│ │ ├── GameClient.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── black.gif
│ │ │ ├── grid.gif
│ │ │ └── white.gif
│ │ ├── Service.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── GameClient.exe
│ │ │ ├── GameClient.pdb
│ │ │ ├── GameClient.vshost.exe
│ │ │ ├── GameClient.vshost.exe.manifest
│ │ │ ├── Resources
│ │ │ │ ├── black.gif
│ │ │ │ └── white.gif
│ │ │ ├── black.gif
│ │ │ └── white.gif
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── GameClient.FormPlaying.resources
│ │ │ ├── GameClient.FormRoom.resources
│ │ │ ├── GameClient.Properties.Resources.resources
│ │ │ ├── GameClient.csproj.FileListAbsolute.txt
│ │ │ ├── GameClient.csproj.GenerateResource.Cache
│ │ │ ├── GameClient.exe
│ │ │ ├── GameClient.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── GameClient.csproj.FileList.txt
│ │ └── GameClient.csproj.FileListAbsolute.txt
│ ├── GameClient.sln
│ └── GameClient.suo
└── GameServer
├── GameServer
│ ├── FormServer.cs
│ ├── FormServer.designer.cs
│ ├── FormServer.resx
│ ├── GameServer.csproj
│ ├── GameTable.cs
│ ├── Player.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Service.cs
│ ├── User.cs
│ ├── bin
│ │ └── Debug
│ │ ├── GameServer.exe
│ │ ├── GameServer.pdb
│ │ ├── GameServer.vshost.exe
│ │ └── GameServer.vshost.exe.manifest
│ └── obj
│ ├── Debug
│ │ ├── GameServer.FormServer.resources
│ │ ├── GameServer.Properties.Resources.resources
│ │ ├── GameServer.csproj.FileListAbsolute.txt
│ │ ├── GameServer.csproj.GenerateResource.Cache
│ │ ├── GameServer.exe
│ │ ├── GameServer.pdb
│ │ ├── Refactor
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── GameServer.csproj.FileList.txt
│ └── GameServer.csproj.FileListAbsolute.txt
├── GameServer.sln
└── GameServer.suo
21 directories, 70 files