1、接口

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace PlugDemo
{
public interface IPlugToText
{
string ProccessText(string text);
}
}

2、菜单属性Class

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace PlugDemo
{
public class MenuNameAttribute:Attribute
{
private string _name; public string Name
{
get { return _name; }
set { _name = value; }
} public MenuNameAttribute(string name)
{
this._name = name;
} }
}

3、实现接口的实现类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace ComPlugDemo
{
[PlugDemo.MenuName("转小写")]
public class PlugToLower : PlugDemo.IPlugToText
{
#region IPlugToText 成员 public string ProccessText(string text)
{
return text.ToLower();
} #endregion
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace ComPlugDemo
{
[PlugDemo.MenuName("转大写")]
public class PlugToUpper:PlugDemo.IPlugToText
{ #region IPlugToText 成员 public string ProccessText(string text)
{
return text.ToUpper();
} #endregion
}
}

4、反射机制:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using System.IO;
using PlugDemo; namespace 插件Demo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void Form1_Load(object sender, EventArgs e)
{
AddPlugMenu();
} void AddPlugMenu()
{
//1、加载正在运行的程序集的物理路径
Assembly ass = this.GetType().Assembly; string location = ass.Location; //2、获取 程序集所在文件夹,并转成 插件程序集文件夹的路径
string assDir = Path.GetDirectoryName(location); string plugDir = assDir + "\\plugs"; //3、扫描 产检文件夹里的 所有程序集文件
string [] dllPaths = Directory.GetFiles(plugDir,"*.dll"); //重点: 获取插件接口 类型对象 //4、遍历程序集文件路径,并加载程序家到内存中
Type iplugType = typeof(IPlugToText); foreach (string dllPath in dllPaths)
{
//4.1 、根据路径 加载程序集文件 到内存中
Assembly amy = Assembly.LoadFrom(dllPath); //4.2 、判断程序集中是否有插件类
//4.2.1、获取插件程序集里公有的类
Type[] types = amy.GetExportedTypes();
//4.2.2 循环遍历 插件程序集里的类型 ,判断是否实现记事本插件接口
foreach (Type t in types)
{
//判断 t 是否 实现了接口 IPlugToUpper
if (iplugType.IsAssignableFrom(t))
{
//重要,获取的MenuNameAttribute 特性对象,或将 内部的Name现在到菜单中
object[] atts = t.GetCustomAttributes(typeof(MenuNameAttribute),false);
MenuNameAttribute menuName = atts[] as MenuNameAttribute; //重要:根据插件类型,创建 插件类 对象
IPlugToText iplug = Activator.CreateInstance(t) as IPlugToText; ToolStripMenuItem item = new ToolStripMenuItem(menuName.Name); plugMenu.DropDownItems.Add(item); item.Click += new EventHandler(item_Click); item.Tag = iplug;
}
}
} } void item_Click(object sender, EventArgs e)
{
ToolStripMenuItem item = sender as ToolStripMenuItem; IPlugToText iplug = item.Tag as IPlugToText;
textBox1.Text = iplug.ProccessText(textBox1.Text);
}
}
}

C# 反射实例的更多相关文章

  1. ObjectTools反射实例

    ObjectTools反射实例 package com.shitou.deposit.chinapnr.utils; import org.apache.commons.logging.Log; im ...

  2. 类的反射实例(servlet的抽取)

    类的反射实例 具体以后我们写的时候不用写BaseServlet,因为各种框架都已经给我们写好了 所以,user对应的servlet的界面长这样:

  3. C#反射实例应用--------获取程序集信息和通过类名创建类实例

    AppDomain.CurrentDomain.GetAssemblies();获取程序集,但是获取的只是已经加载的dll,引用的获取不到. System.Reflection.Assembly.Ge ...

  4. PHP API反射实例

    *反射是操纵面向对象范型中元模型的API,其功能十分强大,可帮助我们构建复杂,可扩展的应用.其用途如:自动加载插件,自动生成文档,甚至可用来扩充PHP语言.php反射api由若干类组成,可帮助我们用来 ...

  5. java反射 实例

    首先介绍几个概念: 1.Java反射的概念 反射含义:可以获取正在运行的Java对象. 2.Java反射的功能 1)可以判断运行时对象所属的类 2)可以判断运行时对象所具有的成员变量和方法 3)通过反 ...

  6. c# 类的反射实例 (GetType().Invoke().GetMethod().CreateInstance())

    原文:http://www.cnblogs.com/chenwei19/archive/2009/02/04/1384034.html Class1和Form 窗体在同一个命名空间 using Sys ...

  7. C#反射实例(一) 利用反射使用类库

    在网上查找了不少的资料,可以说大同小异,概念性的东西网上一搜一堆,今天把反射的东西整理了一下,供大家使用,我保证我这里是最全面的东西,当然也是基础的东西,在学好了这一切的基础上,大家可以学习反射的具体 ...

  8. Java 反射实例

    实体类:Userpackage com.reflect.model; public class User{ private User(int id, String username, String p ...

  9. go反射实例

    需求分析: 如在rocketmq的网络通信中,所有通信数据包以如下形式传输: (注:rocketmq的java结构体,这里使用了go形式表示) type RemotingCommand struct ...

随机推荐

  1. __new__ __init__区别

    1 class A(object): 2 def __init__(self,*args, **kwargs): 3 print "init A" 4 def __new__(cl ...

  2. js 錯誤

    try{ //需要被檢測是否拋出錯誤 } catch(err) { //錯誤處理代碼 } try.catch成對出現 throw:拋出錯誤 當錯誤發生時,javascript引擎停止運行,并生成一個錯 ...

  3. python之函数(可选参数和混合参数)

    代码举例: # 函数可选参数举例,hoppy参数可传可不传 def getinfo(name, age, hoppy=''): if hoppy: print("name:", n ...

  4. python之itemgetter函数:对字典列表进行多键排序

    itemgetter函数:对字典列表进行多键排序 from operator import itemgetter list_people = [ {'name': 'Mike', 'age': 22, ...

  5. C/S架构引用Lodop 如何在C#调用web打印控件Lodop

    lodop是web打印控件,引用安装目录下的ocx文件,可以在c/s架构中使用. 该文件所在路径:C:\Program Files (x86)\MountTaiSoftware\Lodop 有32位和 ...

  6. python---str和repr

    在 Python 中要将某一类型的变量或者常量转换为字符串对象通常有两种方法,即 str() 或者 repr() . 区别与使用 函数str() 用于将值转化为适于人阅读的形式,而repr() 转化为 ...

  7. 【转】学习MOS管技术知识,这篇文章就够了!

    MOS管学名是场效应管,是金属-氧化物-半导体型场效应管,属于绝缘栅型.本文就结构构造.特点.实用电路等几个方面用工程师的话简单描述. 其结构示意图: 解释1:沟道 上面图中,下边的p型中间一个窄长条 ...

  8. JS模板引擎handlebars.js的简单使用

    handlebars.js的使用 首先我们要明白handlebars.js是干什么用的,我们知道使用jsp很麻烦, 于是我们开始使用freemarker等模板引擎,但这个只是针对服务器端来解 析的,那 ...

  9. CentOS 7下Samba服务部署

    Samba,是种用来让UNIX系列的操作系统与微软Windows操作系统的SMB/CIFS(Server Message Block/Common Internet File System)网络协议做 ...

  10. C#使用Ado.Net读写数据库

    1.使用DataReader方式读取资料 [csharp] view plain copy String connString = ConfigurationManager.ConnectionStr ...