C# 获取DLL中需要的接口类
2021-05-30 10:15
标签:for var man return ini inter direct 本地 typeof [ 需求 ] 使用反射,循环本地DLL文件,获取实现了所需接口的类,并实例化。 Loop local dll files by reflection library and assembly library to find all the classes that implement certain interface and create instances for them. 二话不说,先上代码。 Talk is cheap. Show me the code. C# 获取DLL中需要的接口类 标签:for var man return ini inter direct 本地 typeof 原文地址:https://www.cnblogs.com/jiceberg420/p/11044688.html 1 using System;
2 using System.Collections.Generic;
3 using System.IO;
4 using System.Linq;
5 using System.Reflection;
6
7 namespace InterfaceClassLoader
8 {
9 public class Loader
10 {
11
12 private List