示例#1
0
        private void SetInheritsAttributeIfFound(MemberInfo field)
        {
            var inheritsAttribute = field.GetCustomAttribute <InheritsAttribute>();

            if (inheritsAttribute != null)
            {
                _fieldDrawer.SetAttribute(inheritsAttribute);
            }
        }
示例#2
0
        private void SetInheritsAttributeIfFound(MemberInfo field)
        {
            var inheritsAttribute = (InheritsAttribute)Attribute.GetCustomAttribute(field, typeof(InheritsAttribute));

            if (inheritsAttribute != null)
            {
                _fieldDrawer.SetAttribute(inheritsAttribute);
            }
        }