項目結(jié)構(gòu):
成都創(chuàng)新互聯(lián)主打移動網(wǎng)站、成都做網(wǎng)站、網(wǎng)站設(shè)計、網(wǎng)站改版、網(wǎng)絡(luò)推廣、網(wǎng)站維護、國際域名空間、等互聯(lián)網(wǎng)信息服務(wù),為各行業(yè)提供服務(wù)。在技術(shù)實力的保障下,我們?yōu)榭蛻舫兄Z穩(wěn)定,放心的服務(wù),根據(jù)網(wǎng)站的內(nèi)容與功能再決定采用什么樣的設(shè)計。最后,要實現(xiàn)符合網(wǎng)站需求的內(nèi)容、功能與設(shè)計,我們還會規(guī)劃穩(wěn)定安全的技術(shù)方案做保障。
將Document類庫生成的DLL文件放在ConsoleApplication2\ConsoleApplication2\bin\Debug文件夾下
-------------------------------------------------------------Document.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Document { public class Document { public string Name = "李四"; public string GetName(string name) { return name; } } }
-------------------------------------------------------------Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reflection; using System.IO; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { //獲取程序集 Assembly asb = Assembly.LoadFrom(Directory.GetCurrentDirectory() + "/Document.dll"); //獲取程序集下面的Document類 Type document = asb.GetType("Document.Document"); //實例化Document類對象(有參數(shù)的話需要傳遞object參數(shù)) object docObj = Activator.CreateInstance(document); //獲取Document類中的方法 MethodInfo mi = document.GetMethod("GetName"); //參數(shù) object[] parameter = new object[] { "張三" }; Console.WriteLine(mi.Invoke(docObj, parameter).ToString());//輸出方法的返回值:張三 //獲取Document類中的屬性 FieldInfo pi = document.GetField("Name"); Console.WriteLine(pi.GetValue(docObj));//輸出方法的屬性:李四 Console.ReadKey(); } } }
文章題目:反射示例1-----執(zhí)行反射dll的方法和獲取屬性的值
瀏覽地址:http://aaarwkj.com/article44/gpjjee.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)網(wǎng)站建設(shè)、企業(yè)建站、網(wǎng)站改版、網(wǎng)站設(shè)計公司、網(wǎng)站制作、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)