• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

开发c#插件步骤 开发c#插件步骤

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

//1 定义插件接口,将其编译成 dll,例如:
using System;

namespace PluginInterface
 public interface IShow
 
  string Show() ;
 }

}



//2 编写插件. 新建dll工程,并引用第一步做的dll插件,实现其接口,例如:
namespace PluginA
 public class PluginA : PluginInterface.IShow
 
  public string Show()
  
   return "I am plugin A" ;
  }

 }

}

收集程序集:

//3. 在指定目录下寻找Dll文件
private void frmMain_Load(object sender, System.EventArgs e)
    //获取Plugins目录中所有的DLL文件,并保存在combo中
                    try
    
        string path = Application.StartupPath ;
        path  
= System.IO.Path.Combine(path,"Plugins") ;
        
foreach ( string file in System.IO.Directory.GetFiles(path,"*.dll"))
        
            this.cmbPlugins.Items.Add(file) ;
        }

    }

    
catch (Exception ex)
    
        MessageBox.Show(ex.Message ) ;
    }


}

使用插件

 

private void btnExecute_Click(object sender, System.EventArgs e)
       try
    
          //1. 获得 文件名称 

        
string asmFile = this.cmbPlugins.Text ;
        
string asmName = System.IO.Path.GetFileNameWithoutExtension(asmFile) ;
        
if ( asmFile != string.Empty ) 
        

              
//2. 利用反射,构造DLL文件的实例

            System.Reflection.Assembly asm 
= System.Reflection.Assembly.LoadFrom(asmFile) ;

             
//3. 利用反射,从程序集(DLL)中,提取类,并把此类实例化

            PluginInterface.IShow iShow 
= (PluginInterface.IShow) 
                        System.Activator.CreateInstance(asm.GetType(asmName 
+ "Namespace." + asmName+"Class")) ;

             
//4. 在主程序中使用这个类的实例

                    
this.label2.Text = iShow.Show();
        }

    }


    
catch ( Exception ex )
    
        MessageBox.Show(ex.Message ) ;
    }

}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
无废话C#设计模式之八:Facade发布时间:2022-07-10
下一篇:
C#编写的winform程序打包方法 - 悟生慧发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap