Given this attribute, what does typeof(Derived).GetCustomAttributes(typeof(InfoAttribute), inherit: true) return for Derived?
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
class InfoAttribute : Attribute { }
[Info]
class Base { }
class Derived : Base { }