基本信息
源码名称:prim插件开发实现。热插拔
源码大小:1.46M
文件格式:.rar
开发语言:C#
更新时间:2022-01-20
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

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

本次赞助数额为: 2 元 
   源码介绍
prim插件开发实现。热插拔

.
├── Prism学习(3)---实现可插拔的模块
│   ├── Application
│   │   ├── App.config
│   │   ├── Application.csproj
│   │   ├── Application.csproj.user
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Application.exe
│   │   │   │   ├── Application.exe.config
│   │   │   │   ├── Application.pdb
│   │   │   │   ├── Application.vshost.exe
│   │   │   │   ├── Application.vshost.exe.config
│   │   │   │   ├── Application.vshost.exe.manifest
│   │   │   │   ├── CalculatorLibrary.dll
│   │   │   │   ├── CalculatorLibrary.pdb
│   │   │   │   ├── CommandParserLibrary.dll
│   │   │   │   ├── CommandParserLibrary.pdb
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   ├── CommonTypesLibrary.pdb
│   │   │   │   ├── InputOutputLibrary.dll
│   │   │   │   ├── InputOutputLibrary.pdb
│   │   │   │   ├── InterfaceLibrary.dll
│   │   │   │   ├── InterfaceLibrary.pdb
│   │   │   │   ├── MainModuleLibrary.dll
│   │   │   │   ├── MainModuleLibrary.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.UnityExtensions.dll
│   │   │   │   ├── Microsoft.Practices.Prism.UnityExtensions.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.UnityExtensions.xml
│   │   │   │   ├── Microsoft.Practices.Prism.dll
│   │   │   │   ├── Microsoft.Practices.Prism.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.xml
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   │   ├── Microsoft.Practices.Unity.Configuration.dll
│   │   │   │   ├── Microsoft.Practices.Unity.Configuration.xml
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   └── Release
│   │   └── obj
│   │       └── x86
│   │           └── Debug
│   │               ├── Application.csproj.FileListAbsolute.txt
│   │               ├── Application.exe
│   │               ├── Application.pdb
│   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │               ├── ResolveAssemblyReference.cache
│   │               ├── TempPE
│   │               └── build.force
│   ├── Calculator
│   │   ├── Calculator.csproj
│   │   ├── Class1.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           └── TempPE
│   ├── CalculatorLibrary
│   │   ├── Calculator.cs
│   │   ├── CalculatorLibrary.csproj
│   │   ├── CalculatorLibrary.csproj.user
│   │   ├── CalculatorModule.cs
│   │   ├── CalcutorReplLoop.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── CalculatorLibrary.dll
│   │   │   │   ├── CalculatorLibrary.pdb
│   │   │   │   ├── CommandParserLibrary.dll
│   │   │   │   ├── CommandParserLibrary.pdb
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   ├── CommonTypesLibrary.pdb
│   │   │   │   ├── InputOutputLibrary.dll
│   │   │   │   ├── InputOutputLibrary.pdb
│   │   │   │   ├── InterfaceLibrary.dll
│   │   │   │   ├── InterfaceLibrary.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.dll
│   │   │   │   ├── Microsoft.Practices.Prism.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.xml
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── CalculatorLibrary.csproj.FileListAbsolute.txt
│   │           ├── CalculatorLibrary.dll
│   │           ├── CalculatorLibrary.pdb
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── ResolveAssemblyReference.cache
│   │           └── TempPE
│   ├── CommandParserLibrary
│   │   ├── CommandParserLibrary.csproj
│   │   ├── CommandParserLibrary.csproj.user
│   │   ├── InputParserService.cs
│   │   ├── InputParsingModule.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── CommandParserLibrary.dll
│   │   │   │   ├── CommandParserLibrary.pdb
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   ├── CommonTypesLibrary.pdb
│   │   │   │   ├── InterfaceLibrary.dll
│   │   │   │   ├── InterfaceLibrary.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.dll
│   │   │   │   ├── Microsoft.Practices.Prism.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.xml
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── CommandParserLibrary.csproj.FileListAbsolute.txt
│   │           ├── CommandParserLibrary.dll
│   │           ├── CommandParserLibrary.pdb
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── ResolveAssemblyReference.cache
│   │           └── TempPE
│   ├── CommandTypesLibrary
│   │   ├── Arguments.cs
│   │   ├── CommandTypes.cs
│   │   ├── CommonTypesLibrary.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   └── CommonTypesLibrary.pdb
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── CommonTypesLibrary.csproj.FileListAbsolute.txt
│   │           ├── CommonTypesLibrary.dll
│   │           ├── CommonTypesLibrary.pdb
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           └── TempPE
│   ├── InputOutputLibrary
│   │   ├── ConsoleInputService.cs
│   │   ├── ConsoleOutputService.cs
│   │   ├── InputOutputLibrary.csproj
│   │   ├── InputOutputLibrary.csproj.user
│   │   ├── InputOutputModule.cs
│   │   ├── MsgBoxOutputService.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   ├── CommonTypesLibrary.pdb
│   │   │   │   ├── InputOutputLibrary.dll
│   │   │   │   ├── InputOutputLibrary.pdb
│   │   │   │   ├── InterfaceLibrary.dll
│   │   │   │   ├── InterfaceLibrary.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.dll
│   │   │   │   ├── Microsoft.Practices.Prism.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.xml
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.xml
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── InputOutputLibrary.csproj.FileListAbsolute.txt
│   │           ├── InputOutputLibrary.dll
│   │           ├── InputOutputLibrary.pdb
│   │           └── TempPE
│   ├── InterfaceLibrary
│   │   ├── ICalculator.cs
│   │   ├── ICalcutorReplLoop.cs
│   │   ├── IInputParserService.cs
│   │   ├── IInputService.cs
│   │   ├── IOutputService.cs
│   │   ├── InterfaceLibrary.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   ├── CommonTypesLibrary.pdb
│   │   │   │   ├── InterfaceLibrary.dll
│   │   │   │   └── InterfaceLibrary.pdb
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── InterfaceLibrary.csproj.FileListAbsolute.txt
│   │           ├── InterfaceLibrary.dll
│   │           ├── InterfaceLibrary.pdb
│   │           ├── ResolveAssemblyReference.cache
│   │           └── TempPE
│   ├── MainModuleLibrary
│   │   ├── MainModule.cs
│   │   ├── MainModuleLibrary.csproj
│   │   ├── MainModuleLibrary.csproj.user
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── CommonTypesLibrary.dll
│   │   │   │   ├── CommonTypesLibrary.pdb
│   │   │   │   ├── InterfaceLibrary.dll
│   │   │   │   ├── InterfaceLibrary.pdb
│   │   │   │   ├── MainModuleLibrary.dll
│   │   │   │   ├── MainModuleLibrary.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.dll
│   │   │   │   ├── Microsoft.Practices.Prism.pdb
│   │   │   │   ├── Microsoft.Practices.Prism.xml
│   │   │   │   ├── Microsoft.Practices.ServiceLocation.dll
│   │   │   │   └── Microsoft.Practices.ServiceLocation.xml
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── MainModuleLibrary.csproj.FileListAbsolute.txt
│   │           ├── MainModuleLibrary.dll
│   │           ├── MainModuleLibrary.pdb
│   │           ├── ResolveAssemblyReference.cache
│   │           └── TempPE
│   ├── Prism.sln
│   ├── Prism.suo
│   └── Prism测试.suo
└── 好例子网_实现可插拔的模块.rar

65 directories, 170 files