Итак, если у меня есть:
public class Sedan : Car
{
/// ...
}
public class Car : Vehicle, ITurn
{
[MyCustomAttribute(1)]
public int TurningRadius { get; set; }
}
public abstract class Vehicle : ITurn
{
[MyCustomAttribute(2)]
public int TurningRadius { get; set; }
}
public interface ITurn
{
[MyCustomAttribute(3)]
int TurningRadius { get; set; }
}
Какую магию я могу использовать, чтобы сделать что-то вроде:
[Test]
public void Should_Use_Magic_To_Get_CustomAttributes_From_Ancestry()
{
var property = typeof(Sedan).GetProperty("TurningRadius");
var attributes = SomeMagic(property);
Assert.AreEqual(attributes.Count, 3);
}
Оба
property.GetCustomAttributes(true);
И
Attribute.GetCustomAttributes(property, true);
Вернуть только 1 атрибут. Экземпляр создан с помощью MyCustomAttribute (1). Кажется, это не работает так, как ожидалось.