Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC#reflection and attributesSingle-choice MCQ

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 { }