属性コード
[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
なぜこれが起こっているのか説明してください。結局のところ、それは継承されなければなりません。