namespace ReflectionExample
{
using System;
using System.Reflection;
public class RefExample2
{
private int sum;
public void addition(int num1, int num2)
{
sum = num1 + num2;
}
public static int Main()
{
Type t1 = typeof(RefExample2);
MemberInfo[] memInfo = t1.GetMembers();
foreach (MemberInfo mInfo in memInfo)
{
Console.WriteLine(mInfo);
}
Console.ReadLine();
return 0;
}
}
}
以上代码是使用GetMembers()方法检索RefExample2类的成员,输出结果为:
Void addition(Int32, Int32)
Int32 Main()
System.type GetType() //指的是什么?
System.String ToString() //指的是什么?
Boolean Equals(System.Object) //指的是什么?
Int32 GetHashCode() //指的是什么?
Void .ctor() //指的是什么?
米琪卡哇伊
30秒到达战场
相关分类