【例子介绍】多人聊天室系统C#版
多人聊天室系统 类似QQ的聊天系统 C#版本 P2P
【相关图片】
【源码结构】
.
├── 聊天室客户端3.1
│ ├── 聊天室程序
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── RtfEditor.dll
│ │ │ ├── 聊天室程序.exe
│ │ │ ├── 聊天室程序.pdb
│ │ │ ├── 聊天室程序.vshost.exe
│ │ │ └── 聊天室程序.vshost.exe.manifest
│ │ ├── log.Designer.cs
│ │ ├── log.cs
│ │ ├── log.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── 聊天室程序.Properties.Resources.resources
│ │ │ ├── 聊天室程序.chatface.resources
│ │ │ ├── 聊天室程序.csproj.FileListAbsolute.txt
│ │ │ ├── 聊天室程序.csproj.GenerateResource.Cache
│ │ │ ├── 聊天室程序.exe
│ │ │ ├── 聊天室程序.log.resources
│ │ │ ├── 聊天室程序.pdb
│ │ │ ├── 聊天室客户端.csproj.FileListAbsolute.txt
│ │ │ └── 聊天室客户端.csproj.GenerateResource.Cache
│ │ └── 聊天室客户端.csproj
│ ├── 聊天室程序.suo
│ ├── 聊天室客户端.sln
│ └── 聊天室客户端.suo
├── 聊天室服务器端 3.1
│ ├── 聊天室服务器端
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 聊天室服务器端.pdb
│ │ │ ├── 聊天室服务器端.sln
│ │ │ ├── 聊天室服务器端.suo
│ │ │ ├── 聊天室服务器端.vshost.exe
│ │ │ └── 聊天室服务器端.vshost.exe.manifest
│ │ ├── client.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ ├── 聊天室服务器端.Form1.resources
│ │ │ ├── 聊天室服务器端.Properties.Resources.resources
│ │ │ ├── 聊天室服务器端.csproj.FileListAbsolute.txt
│ │ │ ├── 聊天室服务器端.csproj.GenerateResource.Cache
│ │ │ ├── 聊天室服务器端.exe
│ │ │ └── 聊天室服务器端.pdb
│ │ └── 聊天室服务器端.csproj
│ ├── 聊天室服务器端.sln
│ └── 聊天室服务器端.suo
└── 多人聊天室系统C#版.zip
18 directories, 56 files
评论