Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRichard Jones
3,500 PointsIEnumerables code wont compile. I guess I am not catching the concept. Any pointers?
Do I have to write the query separately from the the IEnumerable. Not clicking yet.
using System.Collections.Generic;
using System.Linq;
namespace Treehouse.CodeChallenges
{
public class NumberAnalysis
{
private List<int> _numbers;
public IEnumerable<int> NumberAnalysis()
{
_numbers = new List<int> { 2, 4, 6, 8, 10 };
IEnumerable<int> numbersGreaterThanFive = from n in _numbers where n > 5 select n;
return numbersGreaterThanFive;
}
}
}
2 Answers
Steven Parker
231,198 PointsYou created the wrong kind of thing.
The task says to "Create a public method ...", but you created a new variable inside the class constructor.
You seem to have most of the right code, just move it into a separate method.
Richard Jones
3,500 PointsWow, miss read those directions. I didn't notice that was a constructor. I thought it was telling me to add it to that method. Well, it wasn't. I am through, Thank you.