Inherited属性的bool属性指的是什么?
这是否意味着如果我使用具有属性的属性AbcAtribute(具有Inherited = true)来定义我的类,并且如果我从该类继承另一个类,则派生类也将具有相同的属性应用于该类?
为了用一个代码示例来阐明这个问题,请设想以下内容:
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
public class Random: Attribute
{ /* attribute logic here */ }
[Random]
class Mother
{ }
class Child : Mother
{ }
是否Child也将Random属性应用到它?
慕莱坞森
慕侠2389804