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.