In a specific project at my work, I have a method that returns IList. But this interface does not contain where, or FindAll filters. However, when I open a new project, IList contains all. What is the difference?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Did you import System.Linq ? |
|||||||||||
|
|
Nope. Assuming your project is .Net 3.5 or greater, you need to have |
|||||
|
|
You might find this useful: http://stackoverflow.com/questions/1938204/linq-where-vs-findall |
|||
|
|
|
Check .NET Framework of opened framework, may be its .NET Fx 2. System.Linq added in 3.5 |
|||
|
|
|
Here's a basic discussion of extension methods in general. As mentioned by others, the Where method is an extension method found in the System.Linq namespace so you need to import it in order to have intellisense detect the existence of those methods. |
|||
|
|