Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# foreach behavior with derived classes?

Tags:

c#

Right now I have a relatively simple class setup:

class A{
//stuff
}
class B:A{
//more stuff
}
public List<A> ListOfObjects;

What would happen if I do

foreach(B i in ListOfObjects)

would I get only objects of type B? Would it apply some OO magic and convert all As to Bs? Would this even work?

like image 792
rtpg Avatar asked Oct 10 '09 22:10

rtpg


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is C full form?

Originally Answered: What is the full form of C ? C - Compiler . C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972.

How old is the letter C?

The letter c was applied by French orthographists in the 12th century to represent the sound ts in English, and this sound developed into the simpler sibilant s.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


2 Answers

If the list had A's in it (or other things that aren't B or subclasses of B), then it would simply break with an invalid-cast. You probably want:

foreach(B i in ListOfObjects.OfType<B>()) {...}

in .NET 3.5. (I'm assuming that the list itself will be non-null, btw)

like image 195
Marc Gravell Avatar answered Sep 25 '22 20:09

Marc Gravell


I personally use var as the loop variable in foreach under all circumstances, to avoid any possibility of an invalid runtime cast. That way, the type of the loop variable will be the static type of the collection's items; if you want something else, use OfType to perform a safe filtering cast.

Some more explanation here.

like image 44
Daniel Earwicker Avatar answered Sep 21 '22 20:09

Daniel Earwicker