Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider a list of Label:

Collection<Label> labels = new Collection<Label>();

Now i want to cast this to a collection of Controls:

public void ScaleControls(ICollection<Control> controls) {}

i would try calling:

ScaleControls(labels);

but that doesn't compile.

ScaleControls((ICollection<Control>)labels);

compiles, but crashes at runtime.

ICollection<Control> controls = (ICollection<Control>)labels;
ScaleControls(c);

compiles, but crashes at runtime.

Is there a way to pass around generic lists of objects?


The alternative is to abandon generic lists, and use typed lists:

public class ControlList : Collection<Control>
{
}

pubic void InvalidateControls(ControlList controls)
{
}

But that means all code using generics must be retrofitted.

share|improve this question
what version of .Net do you use? – w0lf Jan 10 '12 at 20:54
Does the collection have to originally be of type Label or could you get away with Control since label inherits from Control? – Brad Semrad Jan 10 '12 at 20:55
3  
You should read up on covariance and contravariance, that could solve your problem. Sadly few if any of the build-in collections are using it. – Joachim Isaksson Jan 10 '12 at 20:56
@JoachimIsaksson i have a vague understanding on what they are; but only in the context of "What you want to do is not supported in CLR yet because of...covariance and contravariance." By 'solve my problem' do you mean that i'll realize that i cannot do what i want - so no problem. Or is there a way to solve the problem if i read more about covariance and contravariance. – Ian Boyd Jan 10 '12 at 20:58
2  
@Ian I think some of the material that is out there around covariance and contravariance explains why you shouldn't, from a type safety perspective, be able to do what you are asking to do. The gist is that if you were allowed to do what you're asking, then you could potentially write code to add a TextBox control to a List<Label> collection, which is totally invalid. – Dr. Wily's Apprentice Jan 10 '12 at 21:08
show 4 more comments

3 Answers

up vote 7 down vote accepted

You can't cast it; you have to convert it yourself.

InvalidateControls(new List<Control>(labels));  //C# 4 or later

Your problem here is that ICollection<T> is not covariant. The reason ICollection is not covariant is to prevent methods like this from being evil:

void AddControl(ICollection<Control> controls, Control control)
{
    controls.Add(control);
}

Why would that be evil? Because if ICollection were covariant, the method would allow you to add TextBoxes to lists of labels:

AddControl(new List<Label>(), new TextBox());

List<Control> has a constructor that takes IEnumerable<Control>. Why can we pass labels in? Because IEnumerable<T> is covariant: You can't put anything into an IEnumerable<T>; you can only take things out. Because of that, you know that you can treat anything retrieved from the IEnumerable<T> as a T (of course) or any of its base types.

EDIT

I just noticed that you're using .Net 3.5. In that case, IEnumerable<T> is not covariant, and you'll need more code to convert the collection. Something like this:

ICollection<T> ConvertCollection<T, U>(ICollection<U> collection) where U : T
{
    var result = new List<T>(collection.Count);
    foreach (var item in collection)
        result.Add(item);
}
share|improve this answer
Cast returns an IEnumerable, rather than the ICollection required by this hypothetical example. – Ian Boyd Jan 10 '12 at 20:56
i don't see why the it's not a solvable problem: controls.Add(new HttpWebRequst()); ArgumentException - cannot add type HttpWebRequest to ICollection<Label> – Ian Boyd Jan 10 '12 at 21:01
@IanBoyd yes I noticed that about IEnumerable, and have corrected it. – phoog Jan 10 '12 at 21:04
I think the point would be that trading away compilation time errors for runtime errors is not the "C# way" to do things. – Joachim Isaksson Jan 10 '12 at 21:05
1  
@IanBoyd who verifies that the documentation is correct? I've yet to work on a project where all the documentation was correct and where all the methods with correct documention had no bugs – Rune FS Jan 10 '12 at 21:33
show 7 more comments

A quick answer to the question:

labels.Cast<Control>().ToList()

This will create an entirely new, separate list, so if you were to pass the new collection to a method that adds a control to it, then that new control will not be reflected in the original collection, labels.

An alternative is to look at the method that you're passing the collection to. Suppose you have a method such as the following:

    void AddControl(List<Control> controls, string controlName)
    {
        Control ctrl = this.FindControlByName(controlName);

        controls.Add(ctrl);
    }

You cannot pass a List<Label> object to this method, but you can if you rewrite it as a generic method, as shown below:

    void AddControl<T>(List<T> controls, string controlName)
        where T : Control
    {
        Control ctrl = this.FindControlByName(controlName);

        controls.Add((T)ctrl); // a cast is required
    }

Granted, the above suggestions may not be possible or preferrable, depending on your situation.

As indicated in your own answer, yet another possibility is to utilzie the non-generic interfaces. This is a perfectly valid approach; I think that ever since generics came out in .NET 2.0 we've generally become averse to casting, thinking that it is somehow "bad", but sometimes casting is simply necessary when dealing with polymorphism.

share|improve this answer

The solution i've found - stop using Collections:

List<Label> labels = new List<Label>();

and then the method becomes:

public void ScaleControls(IList controls) {}

i get the benefit of a generic lists, without .NET complaining that it cannot do the obvious.

And if someone calls:

controls.Add(new System.Xml.XmlDocument());

then i get the error:

ArgumentException
The value "System.Xml.XmlDocument" is not of type "System.Windows.Forms.Label" and cannot be used in this generic collection.

Exactly as i would expect.

And it only took me four days, and seven stackoverflow questions, to get there.

share|improve this answer
2  
Good example for XY Problem perlmonks.org/index.pl?node_id=542341 – L.B Jan 10 '12 at 23:03
@L.B. i know, i know. My question asked "How to cast to an ancestor." The answer that i'll have to accept is "you can't". i could ask a separate question, "How can i do what i want, given that it's not possible" - but no need to open an entirely new question when the answer's here. – Ian Boyd Jan 11 '12 at 21:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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