Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Create Generic method constraining T to an Enum

Is there any reason why we can't do this in C#? And, if possible, how can I do something similar!

What I want :

    public class<T> ATag where T : enum {
        [Some code ..]
    }

    public class<T> classBase where T : enum {
        public IDictionnary tags { get; set; }
    }

So, when it comes the time to call it, I'm sur to get only one of my enum values.


    public class AClassUsingTag : classBase<PossibleTags> {
        public void AMethod(){
             this.tags.Add(PossibleTags.Tag1, "Hello World!");
             this.tags.Add(PossibleTags.Tag2, "Hello Android!");
        }
    }

    public enum PossibleTags {
        Tag1, Tag2, Tag3
    }

Error message : "Constraint cannot be special class 'System.Enum'"

Thank you!

share|improve this question
3  
It is not possible. Have a look here for a work around: stackoverflow.com/questions/79126/… – Daniel Hilgarth Feb 25 '11 at 17:12
2  
By the way, the specification is delightful and illuminating reading. Every C# programmer should be familiar with it, and it should be your first source when you have a question about the language. cf. 10.1.5, in particular, for this question. – Jason Feb 25 '11 at 17:17
1  
@Jason: Yup, and the C# 4 Annotated Spec is particularly wonderful. And I'm not just saying that because I contributed annotations - all the other annotations are really interesting :) – Jon Skeet Feb 25 '11 at 18:10
@Jon Skeet: I agree, all the annotations are insightful. – Jason Feb 25 '11 at 18:24
@Jon: Is there a newer version of the C# Annotated Standard book available? I could not find it. – Chris Dunaway Feb 25 '11 at 20:08
show 4 more comments

marked as duplicate by Jason, Merlyn Morgan-Graham, Jim Mischel, Christopher, Graviton Feb 27 '11 at 15:18

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 11 down vote accepted

You can't do it because the spec says you can't, basically. It's annoying, but that's the way it is. The CLR supports it with no problem. My guess is that when generics were first being designed, the CLR might not have supported it, so it was prohibited in the language too... and either the C# team didn't get the memo about it then being supported, or it was too late too include it. Delegates are similarly annoying.

As for a workaround... have a look at my Unconstrained Melody project. You could use the same approach yourself. I wrote a blog post at the same time, which goes into more details.

share|improve this answer

it's not possible. But if you are interested in a runtime check you can do

class A<T>
        {
            static A()
            {
                if(!typeof(T).IsEnum)
                {
                    throw new Exception();
                }
            }
        }
share|improve this answer

No I don't believe so. Yes use a design pattern to get around it, have the base class return the type that's allowed, and the derived classes can check for it.

HTH.

share|improve this answer

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