作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 2 个项目,项目 A 和项目 B。
在项目 A 中,我有一个用属性 Myperson 修饰的 ClsPersoon 类。
在项目 B 中,我对项目 A 的 exe 文件使用反射,我想选择具有 customAttribute MyPerson 的所有类型,但我在 getCustomAttributes 上收到错误,因为此属性在项目 B 中未知。
如果两个项目之间没有引用,如何解决这个问题?
最佳答案
如果您愿意根据名称进行匹配,可以使用 Attribute 类的静态方法来获取特定目标的自定义属性:
static IEnumerable<Type> TypesWithAttribute(Assembly a, string attributeName )
{
return
a
.GetTypes( )
.Where
(
t =>
Attribute
.GetCustomAttributes( t )
.Any
(
att =>
att.GetType( ).Name == attributeName
)
);
}
关于c# - 基于属性的项目间反射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34108872/
根据 Android docs ,activity生命周期如下: onCreate() onStart() onResume() onPause() onStop() onDestroy() 问题是,
我有一门类(class)有很多专栏,但这个问题只需要其中三个: ---------------------------------------- | start_date | start_time
给定在同一个 Tomcat 6 上运行的两个 Web 应用程序。如果您从一个应用程序到另一个应用程序进行 http 调用,Tomcat 是否会“短路”此调用,或者它会在调用之前一直在 interweb
我是一名优秀的程序员,十分优秀!