.net Reflection(反射)- 二
2020-12-13 02:17
标签:style blog class code java tar 反射 Reflection 中访问方法 新建一个ClassLibrary类库: 还可以通过 FindInterfaces 方法返回 接口信息 .net Reflection(反射)- 二,搜素材,soscw.com .net Reflection(反射)- 二 标签:style blog class code java tar 原文地址:http://www.cnblogs.com/dragon-L/p/3716302.html public class Student
{
public string Name
{ get; set; }
public string School
{ get; set; }
public int Sum(int a, int b)
{
return a + b;
}
public string GetName()
{
return "this is book" ;
}
}
///
//返回a b和
}
//获取程序集接口 Stu 继承的所有接口
Type t =
typeof
(Stu);
Type[] interfaces = t.FindInterfaces(TypeFilter, assembly);
//显示每个接口信息
foreach
(Type i
in
interfaces)
{
//获取映射接口方法的类型的方法
InterfaceMapping mapping = t.GetInterfaceMap(i);
for
(
int
j = 0; j
{
Console.WriteLine(
" {0} 实现的 {1}"
, mapping.InterfaceMethods[j], mapping.TargetMethods[j]);
}
}
上一篇:智能手表开发API接口之我见