您好,登錄后才能下訂單哦!
這篇文章主要介紹“反射reflection的使用方法”,在日常操作中,相信很多人在反射reflection的使用方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”反射reflection的使用方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
//反射
public static void Reflection()
{
//調用非靜態方法
// 1.Load(命名空間名稱),GetType(命名空間.類名)
Type type = Assembly.Load("ConsoleApp").GetType("ConsoleApp.Program");//動態加載dll 并獲取類型
//2.GetMethod(需要調用的方法名稱)
MethodInfo method = type.GetMethod("GetReflect", new Type[] { typeof(string), typeof(int) });
// 3.調用的實例化方法需要創建類型的一個實例
object obj = Activator.CreateInstance(type);
//4.方法需要傳入的參數
object[] parameters = new object[] { "xxx", 10 };
// 5.調用方法
string result = (string)method.Invoke(obj, parameters);
//調用靜態方法
type.InvokeMember("GetReflect", System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Static |
System.Reflection.BindingFlags.Public, null, null, new object[] { "sss", 15 });
//獲取方法名稱
MethodInfo[] info = typeof(Program).GetMethods();
foreach (MethodInfo item in info)
{
Console.WriteLine(item.Name);
var parames = item.GetParameters();
foreach(var parame in parames)
{
Console.WriteLine(parame.Name + "--" + parame.ParameterType.Name);
}
}
//獲取對象的屬性及類型
Type tt = typeof(User);
var fields = tt.GetProperties();
foreach (var item in fields)
{
Console.WriteLine(item.Name + ":" + item.GetValue(user, null) + ":" + item.PropertyType);
}
//獲取對象的屬性并賦值,調用類中的方法
Type projectType = typeof(User);
object projectInstance = Activator.CreateInstance(projectType);
PropertyInfo propertyName = projectType.GetProperty("name");
propertyName.SetValue(projectInstance, "小明");
var projectName = propertyName.GetValue(projectInstance);
PropertyInfo propertyAge = projectType.GetProperty("age");
propertyAge.SetValue(projectInstance, 99, null);
var projectAge = propertyAge.GetValue(projectInstance);
Console.WriteLine("姓名:{0} 年齡:{1}", projectName, projectAge);
MethodInfo method1 = projectType.GetMethod("GetReflect", new Type[] { typeof(string), typeof(int) });
object[] parsArray = { "武大郎",55 };
method1.Invoke(projectInstance, parsArray);
}
public static string GetStaticReflect(string name, int age)
{
Console.WriteLine("反射執行了" + name + "今年" + age + "歲了");
return name + "123";
}
public class User
{
public string name { get; set; }
public int age { get; set; }
public void GetReflect(string name, int age)
{
Console.WriteLine("User反射執行了" + name + "今年" + age + "歲了");
}
}
到此,關于“反射reflection的使用方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。