Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Casting array to IEnumerable<T>

Assume you have a basic Employee class as such:

class Employee {    public string Name;    public int Years;    public string Department; } 

Then (in a seperate class) I have the following code fragments (I think i understand all but the last):

I believe that the following code fragment works because the array initiliser creates an array of Employee objects which are the same type as the workforce variable being assigned to.

Employee[] workforceOne = new Employee[] {    new Employee() { Name = "David", Years = 0, Department = "software" },    new Employee() { Name = "Dexter", Years = 3, Department = "software" },    new Employee() { Name = "Paul", Years = 4, Department = "software" } }; 

I then have the following code fragment. I believe this works because the array of Employee objects implicity is an implementation of the Array() class which implements IEnumerable. Therefore, I believe this is why the array can be assigned to IEnumerable?

IEnumerable workforceTwo = new Employee[] {    new Employee() { Name = "David", Years = 0, Department = "software" },    new Employee() { Name = "Dexter", Years = 3, Department = "software" },    new Employee() { Name = "Paul", Years = 4, Department = "software" } }; 

Then I have this code fragment:

IEnumerable<Employee> workforceThree = new Employee[] {    new Employee() { Name = "David", Years = 0, Department = "software" },    new Employee() { Name = "Dexter", Years = 3, Department = "software" },    new Employee() { Name = "Paul", Years = 4, Department = "software" } }; 

I am not sure why this code fragment works? IEnumerable<Employee> inherits from IEnumerable (and overrides (or overloads?) the GetEnumerator() method) but shouldn't i therefore need a cast for the above to work as such:

//The cast does work but is not required IEnumerable<Employee> workforceFour = (IEnumerable<Employee>)new Employee[] {    new Employee() { Name = "David", Years = 0, Department = "software" },    new Employee() { Name = "Dexter", Years = 3, Department = "software" },    new Employee() { Name = "Paul", Years = 4, Department = "software" } }; 

It seems that the array is being implicitly down cast from a type of IEnumerable to IEnumerable<Employee> but I always thought when you needed to convert a type to something more specific you needed an explicit cast.

Maybe i'm missing something simple in my understanding here but can someone please help me with my understanding around this.

Thank you.

like image 455
Dangerous Avatar asked Aug 24 '11 09:08

Dangerous


2 Answers

From the documentation:

In the .NET Framework version 2.0, the Array class implements the System.Collections.Generic.IList<T>, System.Collections.Generic.ICollection<T>, and System.Collections.Generic.IEnumerable<T> generic interfaces. The implementations are provided to arrays at run time, and therefore are not visible to the documentation build tools. As a result, the generic interfaces do not appear in the declaration syntax for the Array class, and there are no reference topics for interface members that are accessible only by casting an array to the generic interface type (explicit interface implementations).

Thus, your Employee[] implements IEnumerable<Employee>.

like image 183
Heinzi Avatar answered Oct 12 '22 10:10

Heinzi


The Array of Employees by default implements IEnumerable<Employee> as well as IEnumerable

like image 39
Dennis Traub Avatar answered Oct 12 '22 12:10

Dennis Traub