C#源码

关注公众号 jb51net

关闭
C# remoting聊天室源码

C# remoting聊天室源码

热门排行

简介

使用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

大家还下载了