属性コード継承された属性
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
class IgnoreAttribute : Attribute
{
}
基本クラス
abstract class ManagementUnit
{
[Ignore]
public abstract byte UnitType { get; }
}
メインクラス
class Region : ManagementUnit
{
public override byte UnitType
{
get { return 0; }
}
private static void Main()
{
Type t = typeof(Region);
foreach (PropertyInfo p in t.GetProperties())
{
if (p.GetCustomAttributes(typeof(IgnoreAttribute), true).Length != 0)
Console.WriteLine("have attr");
else
Console.WriteLine("don't have attr");
}
}
}
出力:don't have attr
なぜこれが起こっているのか説明してください。結局、それは継承されなければなりません。
はありません、「継承」のデフォルトはtrueです:
この問題はでより詳細に議論されています。 https://msdn.microsoft.com/en-us/library/system.attributeusageattribute.inherited(v=vs.110).aspx – 00jt