时间:2021-05-19
如下所示:
复制代码 代码如下:
class Program
{
static void Main(string[] args)
{
Type t = typeof(Test);
object result;
Test tc =new Test();
Console.WriteLine("Invoke a static method");
t.InvokeMember("Sayhello",BindingFlags.InvokeMethod | BindingFlags.Static | BindingFlags.Public, null, null, new object[] { });
Console.WriteLine("------------------------");
Console.WriteLine("Invoke a generic method");
List<string> list = new List<string>();
list.Add("GuoHu");
list.Add("LeiHu");
//We should assign the parameter type to generic method By using MakeGenericMethod
MethodInfo mi = t.GetMethod("Print").MakeGenericMethod(typeof(string));
mi.Invoke(null, new object[] { list });
Console.WriteLine("------------------------");
Console.WriteLine("Invoke a instance method");
MethodInfo m = t.GetMethod("Swap");
object[] obj = new object[2];
obj[0] = 123;
obj[1] = 230;
m.Invoke(new Test(), obj);
Console.WriteLine("{0},{1}", obj[0], obj[1]);
Console.WriteLine("------------------------");
Console.WriteLine("output field name");
FieldInfo[] fi = t.GetFields();
foreach (FieldInfo name in fi)
{
Console.WriteLine("{0}",name);
}
Console.WriteLine("------------------------");
Console.WriteLine("Invoke a method with named parameters");
object[] argValues = new object[] { "Guo", "Hu" };
String[] argNames = new String[] { "lastName", "firstName" };
t.InvokeMember("PrintName", BindingFlags.InvokeMethod, null, null, argValues, null, null, argNames);
Console.WriteLine("------------------------");
Console.WriteLine("Get a field value");
result = t.InvokeMember("Name", BindingFlags.GetField | BindingFlags.GetProperty, null, tc, new object[] { });
Console.WriteLine("Name == {0}", result);
Console.WriteLine("------------------------");
Console.WriteLine("Set a field value");
t.InvokeMember("Name", BindingFlags.SetField, null, tc, new object[] { "New value" });
result = t.InvokeMember("Name", BindingFlags.GetField | BindingFlags.GetProperty, null, tc, new object[] { });
Console.WriteLine("Name == {0}",result);
}
}
class Test
{
public string Name;
public Test()
{
Name = "Initilize Name";
}
public static void Sayhello()
{
Console.WriteLine("Sayhello");
}
public static void Print<T>(IEnumerable<T> item)
{
foreach (T t in item)
{
Console.WriteLine("{0}", t);
}
}
public static void PrintName(String firstName, String lastName)
{
Console.WriteLine("{0},{1}", lastName, firstName);
}
public void Swap(ref int a, ref int b)
{
int x = a;
a = b;
b = x;
}
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
通常,反射用于动态获取对象的类型、属性和方法等信息。今天带你玩转反射,来汇总一下反射的各种常见操作,捡漏看看有没有你不知道的。获取类型的成员Type类的GetM
以往都是使用反射调用实例方法,那么反射如何调用静态方法呢?看下面的例子ClassthreadClazz=Class.forName("java.lang.Mat
使用反射(Reflect)获取dll文件中的类型并调用方法,具体内容如下需引用:System.Reflection;1.使用反射(Reflect)获取dll文件
使用反射调用方法:一旦知道一个类型所支持的方法,就可以对方法进行调用。调用时,需使用包含在MethodInfo中的Invoke()方法。调用形式:objectI
反射调用返回复杂对象的.NET方法定义数据接口上一篇在C++中反射调用.NET(一)中,我们简单的介绍了如何使用C++/CLI并且初步使用了反射调用.NET程序