c#自定义Attribute获取接口实现示例代码
程序员文章站
2023-11-14 20:09:16
一般的接口实现多态
定义接口
interface ipeople
{
void say();
}
定义实现的类
public class...
一般的接口实现多态
定义接口
interface ipeople { void say(); }
定义实现的类
public class man : ipeople { public void say() { messagebox.show("man"); } } public class woman : ipeople { public void say() { messagebox.show("woman"); } }
一般实现的方法
升级版
添加自定义(这个网上好多)
实现类
调用方法
private static void newmethod(string tpye) { ipeople ib = null; var types = appdomain.currentdomain.getassemblies() .selectmany(a => a.gettypes().where(t => t.getinterfaces().contains(typeof(ipeople)))) .toarray(); foreach (var v in types) { var attribute = v.getcustomattributes(typeof(nameattribute), false).firstordefault(); if (attribute != null && ((nameattribute)attribute).name == tpye) { ib = (ipeople)v.assembly.createinstance(v.fullname); break; } } if (ib != null) ib.say(); }
这个可以避免需要维护swich语句
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。
上一篇: json格式的Ajax提交示例代码
下一篇: 高德地图API-设置考勤范围