vote up 0 vote down star

I'm trying to force an inherited class to use a custom attribute. I'm creating a class library where the user who wants to create an item will do so, but be forced to add an attribute (or visual studio will automatically add the default attribute) to their inherited class. Here is what I'm hoping to achieve:

BaseClass.vb:

<CustomAttribute(10)> _
Public Class BaseClass

End Class

MyClass.vb:

<CustomAttribute(12)> _
Public Class MyClass
    Inherits BaseClass

    Public Sub New()
         Mybase.New()
    End Sub

End Class

So the thought is that much like when you mark a function as "MustOverride" and then the inherited class must override the function, I want the attribute to be "MustOverride" causing the inherited class to specify the value.

I've tried this, and it will work, but it would be much cleaner if I could use attributes:

BaseClass.vb:

Public MustInherit Class BaseClass

   Public MustOverride ReadOnly Property CustomAttribute() As String

End Class

MyClass.vb:

Public Class MyClass
    Inherits BaseClass

    Public Sub New()
         Mybase.New()
    End Sub

    Public Overrides ReadOnly Property CustomAttribute() As String
        Get
             Return "testing"
        End Get
    End Property
End Class

Thank you for any help you can provide.

Scott

flag

How are using these classes that makes the attribute cleaner than a property? – Dennis Palmer Oct 29 at 16:51
@Dennis - Notice how much shorter the code is on the top set of classes? That's what I was after. Please note that this is only one attribute, I will be needing to put upwards of 20 individual properties on each inherited class. (Granted that it's really only 4 lines of code that I would save per attribute (property) but 4*20 = 80 extra lines of code I was hoping not to have. (Thankfully visual studio generates it for me, but still clutters up the code.) – Scott Oct 29 at 17:27
OK, but then are you writing 20 custom attribute classes? What about the code consuming these classes? How clean is the code that checks to see what attributes are applied to a class? This just doesn't seem like the right usage of attributes. – Dennis Palmer Oct 29 at 20:50

1 Answer

vote up 1 vote down check

There's no way in .NET to force a class to define an attribute at compile time. The best you'll be able to do is check at run-time whether the attribute was defined, and if not to throw an exception.

link|flag
Thats not the answer I wanted, but the answer I suspected. Thank you. - Scott – Scott Oct 29 at 16:55
@Scott sorry, I wish I had the answer you wanted! – Joseph Oct 29 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.