基本信息
源码名称:分布式图书管理系统(C# Remoting)
源码大小:0.53M
文件格式:.rar
开发语言:C#
更新时间:2023-07-15
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
分布式图书管理系统(C# Remoting)
分布式图书管理系统(C#),这是模仿本站的一个程序。但代码模式更简洁更易读更易调试。利用.net的remoting技术很好地实现了局域网内程序域的互访问题。经测试发布不完全版本,有兴趣地可以研究一下。文件夹结构:...


文件清单
├── backup
│   └── Library
├── BLL
│   ├── AccessDAO.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── BLL.dll
│   │   │   ├── BLL.pdb
│   │   │   ├── DLL.dll
│   │   │   └── DLL.pdb
│   │   └── Release
│   │       ├── BLL.dll
│   │       ├── BLL.pdb
│   │       ├── DLL.dll
│   │       └── DLL.pdb
│   ├── BLL.csproj
│   ├── BLL.csproj.user
│   ├── BookManger
│   │   ├── BookInfo.cs
│   │   ├── BookInfo.Designer.cs
│   │   ├── BookInfo.xsc
│   │   ├── BookInfo.xsd
│   │   └── BookInfo.xss
│   ├── obj
│   │   ├── BLL.csproj.FileList.txt
│   │   ├── Debug
│   │   │   ├── BLL.dll
│   │   │   ├── BLL.pdb
│   │   │   ├── Refactor
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │       └── BookManger.BookInfo.Designer.cs.dll
│   │   └── Release
│   │       ├── BLL.dll
│   │       ├── BLL.pdb
│   │       └── ResolveAssemblyReference.cache
│   └── Properties
│       ├── AssemblyInfo.cs
│       ├── Settings.Designer.cs
│       └── Settings.settings
├── BookManager.sln
├── DLL
│   ├── App.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── DLL.dll
│   │   │   ├── DLL.dll.config
│   │   │   └── DLL.pdb
│   │   └── Release
│   │       ├── DLL.dll
│   │       ├── DLL.dll.config
│   │       └── DLL.pdb
│   ├── DbExcute.cs
│   ├── DBParameter.cs
│   ├── DLL.csproj
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DLL.dll
│   │   │   ├── DLL.pdb
│   │   │   ├── Refactor
│   │   │   └── TempPE
│   │   ├── DLL.csproj.FileList.txt
│   │   └── Release
│   │       ├── DLL.dll
│   │       └── DLL.pdb
│   └── Properties
│       └── AssemblyInfo.cs
├── IRemotingClass
│   ├── bin
│   │   ├── Debug
│   │   │   ├── IRemotingClass.dll
│   │   │   └── IRemotingClass.pdb
│   │   └── Release
│   │       ├── IRemotingClass.dll
│   │       └── IRemotingClass.pdb
│   ├── IRemotingClass.cs
│   ├── IRemotingClass.csproj
│   ├── obj
│   │   ├── Debug
│   │   │   ├── IRemotingClass.dll
│   │   │   ├── IRemotingClass.pdb
│   │   │   └── TempPE
│   │   ├── IRemotingClass.csproj.FileList.txt
│   │   └── Release
│   │       ├── IRemotingClass.dll
│   │       └── IRemotingClass.pdb
│   └── Properties
│       └── AssemblyInfo.cs
├── RemoteClient
│   ├── bin
│   │   ├── Debug
│   │   │   ├── IRemotingClass.dll
│   │   │   ├── IRemotingClass.pdb
│   │   │   ├── RemoteClient.exe
│   │   │   └── RemoteClient.vshost.exe
│   │   └── Release
│   │       ├── IRemotingClass.dll
│   │       ├── IRemotingClass.pdb
│   │       ├── RemoteClient.exe
│   │       └── RemoteClient.pdb
│   ├── frmLogin.cs
│   ├── frmLogin.Designer.cs
│   ├── frmLogin.resx
│   ├── frmMain.cs
│   ├── frmMain.Designer.cs
│   ├── frmMain.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── Refactor
│   │   │   ├── RemoteClient.csproj.GenerateResource.Cache
│   │   │   ├── RemoteClient.exe
│   │   │   ├── RemoteClient.frmLogin.resources
│   │   │   ├── RemoteClient.frmMain.resources
│   │   │   ├── RemoteClient.pdb
│   │   │   ├── RemoteClient.Properties.Resources.resources
│   │   │   └── TempPE
│   │   │       ├── BookManager.BookInfo.Designer.cs.dll
│   │   │       ├── DataSet1.Designer.cs.dll
│   │   │       └── Properties.Resources.Designer.cs.dll
│   │   ├── Release
│   │   │   ├── RemoteClient.csproj.GenerateResource.Cache
│   │   │   ├── RemoteClient.exe
│   │   │   ├── RemoteClient.frmLogin.resources
│   │   │   ├── RemoteClient.pdb
│   │   │   └── RemoteClient.Properties.Resources.resources
│   │   └── RemoteClient.csproj.FileList.txt
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── RemoteClient.csproj
│   └── RemoteClient.csproj.user
├── RemoteServer
│   ├── App.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── BLL.dll
│   │   │   ├── BLL.pdb
│   │   │   ├── DLL.dll
│   │   │   ├── DLL.pdb
│   │   │   ├── IRemotingClass.dll
│   │   │   ├── IRemotingClass.pdb
│   │   │   ├── RemoteObject.dll
│   │   │   ├── RemoteObject.pdb
│   │   │   ├── RemoteServer.exe
│   │   │   ├── RemoteServer.exe.config
│   │   │   ├── RemoteServer.pdb
│   │   │   ├── RemoteServer.vshost.exe
│   │   │   └── RemoteServer.vshost.exe.config
│   │   └── Release
│   │       ├── BLL.dll
│   │       ├── BLL.pdb
│   │       ├── DLL.dll
│   │       ├── DLL.pdb
│   │       ├── IRemotingClass.dll
│   │       ├── IRemotingClass.pdb
│   │       ├── RemoteObject.dll
│   │       ├── RemoteObject.pdb
│   │       ├── RemoteServer.exe
│   │       ├── RemoteServer.exe.config
│   │       └── RemoteServer.pdb
│   ├── obj
│   │   ├── Debug
│   │   │   ├── Refactor
│   │   │   ├── RemoteServer.csproj.GenerateResource.Cache
│   │   │   ├── RemoteServer.exe
│   │   │   ├── RemoteServer.pdb
│   │   │   ├── RemoteServer.Properties.Resources.resources
│   │   │   ├── RemoteServer.Server.resources
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   └── TempPE
│   │   │       └── Properties.Resources.Designer.cs.dll
│   │   ├── Release
│   │   │   ├── RemoteServer.csproj.GenerateResource.Cache
│   │   │   ├── RemoteServer.exe
│   │   │   ├── RemoteServer.pdb
│   │   │   ├── RemoteServer.Properties.Resources.resources
│   │   │   ├── RemoteServer.Server.resources
│   │   │   └── ResolveAssemblyReference.cache
│   │   └── RemoteServer.csproj.FileList.txt
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── RemoteServer.csproj
│   ├── Server.cs
│   ├── Server.Designer.cs
│   └── Server.resx
└── RemoteWarpper
    ├── bin
    │   ├── Debug
    │   │   ├── BLL.dll
    │   │   ├── BLL.pdb
    │   │   ├── DLL.dll
    │   │   ├── DLL.pdb
    │   │   ├── IRemotingClass.dll
    │   │   ├── IRemotingClass.pdb
    │   │   ├── RemoteObject.dll
    │   │   └── RemoteObject.pdb
    │   └── Release
    │       ├── BLL.dll
    │       ├── BLL.pdb
    │       ├── DLL.dll
    │       ├── DLL.pdb
    │       ├── IRemotingClass.dll
    │       ├── IRemotingClass.pdb
    │       ├── RemoteObject.dll
    │       └── RemoteObject.pdb
    ├── obj
    │   ├── Debug
    │   │   ├── Refactor
    │   │   ├── RemoteObject.dll
    │   │   ├── RemoteObject.pdb
    │   │   ├── ResolveAssemblyReference.cache
    │   │   └── TempPE
    │   ├── Release
    │   │   ├── RemoteObject.dll
    │   │   ├── RemoteObject.pdb
    │   │   └── ResolveAssemblyReference.cache
    │   └── RemoteWarpper.csproj.FileList.txt
    ├── Properties
    │   └── AssemblyInfo.cs
    ├── RemoteWarpper.csproj
    └── RemotingClass.cs

61 directories, 169 files