vote up 11 vote down star
3

This causes a compile-time exception:

public sealed class ValidatesAttribute<T> : Attribute
{

}

[Validates<string>]
public static class StringValidation
{

}

I realize C# does not support generic attributes. However, after much Googling, I can't seem to find the reason.

Does anyone know why generic types cannot derive from Attribute? Any theories?

flag

67% accept rate

4 Answers

vote up 13 vote down check

Well, I can't answer why it's not available, but I can confirm that it's not a CLI issue. The CLI spec doesn't mention it (as far as I can see) and if you use IL directly you can create a generic attribute. The part of the C# 3 spec that bans it - section 10.1.4 "Class base specification" doesn't give any justification.

The annotated ECMA C# 2 spec doesn't give any helpful information either, although it does provide an example of what's not allowed.

My copy of the annotated C# 3 spec should arrive tomorrow... I'll see if that gives any more information. Anyway, it's definitely a language decision rather than a runtime one.

EDIT: Answer from Eric Lippert (paraphrased): no particular reason, except to avoid complexity in both the language and compiler for a use case which doesn't add much value.

link|flag
I'm glad to hear generic attributes are legal IL. I would very much appreciate if you could ask the team! I had the chance to ask Anders at PDC and totally forgot :-) – Bryan Watts Nov 16 '08 at 19:40
I've asked... we'll see if they reply. – Jon Skeet Nov 16 '08 at 20:04
Thanks for the inside info! – Bryan Watts Nov 18 '08 at 15:48
1  
"except to avoid complexity in both the language and compiler"...and that from the people giving us co and contravariance... – Frank Jan 21 at 21:41
Just wanted to ask the same question about attributes. Too sad generic attributes aren't available. Even worse that there is no particular reason for that. :/ – Arnis L. Jun 11 at 11:58
show 1 more comment
vote up 0 vote down

I don't know why it's not allowed, but this is one possible workaround

[AttributeUsage(AttributeTargets.Class)]
public class ClassDescriptionAttribute : Attribute
{
    public ClassDescriptionAttribute(Type KeyDataType)
    {
        _KeyDataType = KeyDataType;
    }

    public Type KeyDataType
    {
        get { return _KeyDataType; }
    }
    private Type _KeyDataType;
}


[ClassDescriptionAttribute(typeof(string))]
class Program
{
    ....
}
link|flag
1  
Unfortunately, you lose compile-time typing when consuming the attribute. Imagine the attribute creates something of the generic type. You can work around it, but it would be nice; it's one of those intuitive things you're surprised you can't do, like variance (currently). – Bryan Watts Nov 17 '08 at 0:20
vote up 2 vote down

This is a very good question. In my experience with attributes, I think the constraint is in place because when reflecting on an attribute it would create a condition in which you would have to check for all possible type permutations: typeof(Validates<string>), typeof(Validates<SomeCustomType>), etc...

In my opinion, if a custom validation is required depending on the type, an attribute may not be the best approach.

Perhaps a validation class that takes in a SomeCustomValidationDelegate or an ISomeCustomValidator as a parameter would be a better approach.

link|flag
I agree with you. I have had this question for a long time, and am currently building a validation system. I used my current terminology to ask the question, but have no intention of implementing an approach based on this mechanism. – Bryan Watts Nov 16 '08 at 19:24
+1 That is probably the reason. Good one. – Jonathan C Dickinson Nov 17 '08 at 9:46
vote up 8 vote down

An attribute decorates a class at compile-time, but a generic class does not receive its final type information until runtime. Since the attribute can affect compilation, it has to be "complete" at compile time.

See this MSDN article for more information.

link|flag
The article restates that they are not possible, but without reason. I conceptually understand your answer. Do you know of any more official documentation on the issue? – Bryan Watts Nov 16 '08 at 19:21
Bryan: I can ask the C# team if you're interested... no guarantee of an answer, but we can hope. – Jon Skeet Nov 16 '08 at 19:26
The article does cover the fact that the IL still contains generic placeholders that are substituted with the actual type at runtime. The rest was inferred by me... :) – GalacticCowboy Nov 16 '08 at 19:46
Thanks for the clarification. I am going to leave the question open at this point. I voted for you :-) – Bryan Watts Nov 16 '08 at 19:52
For what it's worth, VB enforces the same constraint: "Classes that are generic or contained in a generic type cannot inherit from an attribute class." – GalacticCowboy Nov 16 '08 at 20:09
show 2 more comments

Your Answer

Get an OpenID
or

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