热门排行
简介
使用C#编的聊天工具的程序, 此程序是一款用与REMOTING技术的程序。
实例截图
核心代码
└── ChatterWorld remoting ├── Chatter │ ├── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ ├── Chatter.exe │ │ ├── Chatter.pdb │ │ ├── InterfacesChatterWorld.dll │ │ └── InterfacesChatterWorld.pdb │ ├── Chatter.cs │ ├── Chatter.csproj │ ├── Chatter.csproj.user │ ├── Form1.cs │ ├── Form1.resx │ └── obj │ └── Debug │ ├── Chatter.exe │ ├── Chatter.Form1.resources │ ├── Chatter.pdb │ ├── Chatter.projdata │ ├── temp │ └── TempPE ├── InterfacesChatterWorld │ ├── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ ├── InterfacesChatterWorld.dll │ │ └── InterfacesChatterWorld.pdb │ ├── InterfacesChatterWorld.csproj │ ├── InterfacesChatterWorld.csproj.user │ ├── InterfacesChatterWorld.sln │ ├── InterfacesChatterWorld.suo │ ├── Interfaces.cs │ └── obj │ └── Debug │ ├── InterfacesChatterWorld.dll │ ├── InterfacesChatterWorld.pdb │ ├── InterfacesChatterWorld.projdata │ ├── temp │ └── TempPE └── Room ├── AssemblyInfo.cs ├── bin │ └── Debug │ ├── InterfacesChatterWorld.dll │ ├── InterfacesChatterWorld.pdb │ ├── Room.exe │ └── Room.pdb ├── Form1.cs ├── Form1.resx ├── obj │ └── Debug │ ├── Room.exe │ ├── Room.Form1.resources │ ├── Room.pdb │ ├── Room.projdata │ ├── temp │ └── TempPE ├── Room.cs ├── Room.csproj └── Room.csproj.user 22 directories, 39 files