I have the next situation
Generic class:
public class A {
...
}
and two clases:
public class B: A {
...
}
public class C: A {
...
}
In some part of the code I want to do something like (list is filled previously):
foreach (A item in list) {
listB.add((B) item);
}
Is it possible to do it? I just want to bind the list of generic ítems to the list of clases extends the generic class.
Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…