Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
410 views
Welcome To Ask or Share your Answers For Others

1 Answer

You cannot do what you are trying to do because you won't be able to add items of type C to your list of B items

You can however

foreach(B item in list.OfType<B>())
       listB.add(item);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...