Click here to Skip to main content
Click here to Skip to main content

Cast an IEnumerable to an IEnumerable(T)

By , 22 Dec 2012
 

Introduction

It's possible to use LINQ queries to get data from an IEnumerable<T>. But for an IEnumerable, you can't use LINQ. If you write this LINQ query for an IEnumerable:

IEnumerable ienumerable = new int[] { 1, 5, 6, 7, 8, 11, 10, 134, 90 };
var integer = from i in ienumerable where i > 10 select i;

Then, you get this error:

Could not find an implementation of the query pattern for 
source type 'System.Collections.IEnumerable'. 'Where' not found. 
Consider explicitly specifying the type of the range variable 'i'. 

In this tip, I tell you how to cast an IEnumerable to an IEnumerable<T>.

Cast an IEnumerable to an IEnumerable<T>

To cast an IEnumerable to an IEnumerable<T>, you can use this code:

IEnumerable ienumerable = new int[] { 1, 5, 6, 7, 8, 11, 10, 134, 90 };
IEnumerable casted = ienumerable.Cast<int>(); // change 'int' into the 
                              //type of the elements in your IEnumerable

Now, you can use a LINQ query for casted. But, an IEnumerable can contain different types:

IEnumerable ienumerable = new object[] { 1, 5, 6, 7, 8, 11, 10, 134, 90, "test" };

With this code, you can get all integers from the IEnumerable into a IEnumerable<T> using the OfType<T> function:

IEnumerable ienumerable = new object[] { 1, 5, 6, 7, 8, 11, 10, 134, 90, "test" };
IEnumerable<int> allIntegers = ienumerable.OfType<int>(); // change 'int' 
      // in the type of the elements you want to get from the IEnumerable

Points of Interest

There're many collection classes in C# that inherit from IEnumerable, for example System.Windows.Forms.Control.ControlCollection, System.Windows.Forms.HtmlElementCollection or System.Xml.XmlNodeList class. It's useful to use LINQ for these classes.

History

  • 22 Dec 2012: First version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

ProgramFOX
Belgium Belgium
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberTarek Elqusi23 Dec '12 - 5:27 
GeneralRe: My vote of 5memberProgramFOX23 Dec '12 - 22:51 
QuestiongoodmemberUllasN22 Dec '12 - 20:23 
AnswerRe: goodmemberProgramFOX22 Dec '12 - 21:46 
GeneralRe: goodmemberUllasN22 Dec '12 - 23:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 22 Dec 2012
Article Copyright 2012 by ProgramFOX
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid