Why I can't define the LLSGroupsWithItems in the following example (it won't compile):

public class LLSGroupsWithItems<Group<T>> : ObservableCollection<Group<T>>
    {

    }

    public class Group<T> : ObservableCollection<T>
    {
        public Group(string name, IEnumerable<T> items)
        {
            this.Key = name;
            foreach (T item in items)
            {
                this.Add(item);
            }
        }

        public override bool Equals(object obj)
        {
            Group<T> that = obj as Group<T>;

            return (that != null) && (this.Key.Equals(that.Key));
        }

        public string Key
        {
            get;
            set;
        }
    }

The compiler error is:

Type parameter declaration must be an identifier not a type.

Long story:

I have seen an example on WindowsPhoneGeek about how to dynamically add items to a structure of a form ObservableCollection<ObservableCollection<T>>, but I want to encapsulte an automatic grouping functionality within the collection that my LongListSelector is bound to, so that I don't have to always look, what group to add a particular item to. For this, I suppose, I need to create a class I am trying to define, but C# limitations or something won't let me. Please explain why. Thanks.

link|improve this question

2  
Visual Studio 2010 is slow as hell to start up so I'm lazy to paste this and see what error the compiler gives. – BoltClock Aug 25 '11 at 8:54
How about telling us what the error message is? – Preet Sangha Aug 25 '11 at 8:57
feedback

1 Answer

up vote 4 down vote accepted

Shouldn't this

public class LLSGroupsWithItems<Group<T>> : ObservableCollection<Group<T>>
{
}

be written like this instead?

public class LLSGroupsWithItems<T> : ObservableCollection<Group<T>>
{
}
link|improve this answer
Oh, you may be right. I will try. Thanks. – Maxim V. Pavlov Aug 25 '11 at 9:02
feedback

Your Answer

 
or
required, but never shown

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