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

Categories

0 votes
405 views
in Technique[技术] by (71.8m points)

class - Clases and Objects in c#

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

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

1 Answer

0 votes
by (71.8m points)

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);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...