通过类属性的反射属性获取
我发现类继承自接口:
var baseType = typeof(ICustomSerialization);
Assembly assembly = baseType.Assembly;
var subClass = assembly.GetTypes().Where(t => t.IsSubclassOf(baseType) );
如果类有属性和参数名称:
[CustomAttribute(Name="Soap")]
class CustomSoapSerializer : ICustomSerialization
这是通过反射获取该属性的名称属性的方法吗?
I find classes inherit from interface :
var baseType = typeof(ICustomSerialization);
Assembly assembly = baseType.Assembly;
var subClass = assembly.GetTypes().Where(t => t.IsSubclassOf(baseType) );
If class have attribute and parameter Name:
[CustomAttribute(Name="Soap")]
class CustomSoapSerializer : ICustomSerialization
It is a way to get by reflection Name property of this attribute?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
和用法
Try this
And the usage