asp.net動態載入程式集建立指定類的執行個體及調用指定方法

來源:互聯網
上載者:User

標籤:net   load   擷取   nbsp   rom   pil   except   name   catch   

 

以下類中有三個方法:

LoadAssembly:載入指定路徑的程式集
GetInstance:根據Type動態擷取執行個體,用泛型接到返回的類型
ExecuteMothod:執行執行個體中的指定方法
    /// <summary>    /// 繼承自MarshalByRefObject表示允許跨域通訊    /// </summary>    public class RemoteLoader : MarshalByRefObject    {        private Assembly _assembly;        public void LoadAssembly(string assemblyFile)        {            try            {                _assembly = Assembly.LoadFrom(assemblyFile);                //return _assembly;            }            catch (Exception ex)            {                throw ex;            }        }        public T GetInstance<T>(string typeName) where T : class        {            if (_assembly == null) return null;            var type = _assembly.GetType(typeName);            if (type == null) return null;            return Activator.CreateInstance(type) as T;        }        public void ExecuteMothod(string typeName, string methodName)        {            if (_assembly == null) return;            var type = _assembly.GetType(typeName);            var obj = Activator.CreateInstance(type);            Expression<Action> lambda = Expression.Lambda<Action>(Expression.Call(Expression.Constant(obj), type.GetMethod(methodName)), null);            lambda.Compile()();        }    }

 

asp.net動態載入程式集建立指定類的執行個體及調用指定方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.