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 trialCalvin Secrest
24,815 PointsCode could not be compiled... Ned help please!
Create a variable named sumOfSightings and assign it to the sum of all the Sightings in the ourBirds list. Bummer! Your code could not be compiled. Please click on "Preview" to view the compiler errors. Restart Preview Get Help Recheck work CodeChallenge.cs
A local variable `sumOfSightings' cannot be used before it is declared Compilation failed.
var myBirds = new List<Bird>
{
new Bird { Name = "Cardinal", Color = "Red", Sightings = 3 },
new Bird { Name = "Dove", Color = "White", Sightings = 2 },
new Bird { Name = "Robin", Color = "Red", Sightings = 5 }
};
var yourBirds = new List<Bird>
{
new Bird { Name = "Dove", Color = "White", Sightings = 2 },
new Bird { Name = "Robin", Color = "Red", Sightings = 5 },
new Bird { Name = "Canary", Color = "Yellow", Sightings = 0 }
};
var ourBirds = myBirds.Join(yourBirds,
mb => mb.Name,
yb => yb.Name,
(mb, yb) => (mb));
var sumOfSightings = sumOfSightings.Sum(ourBirds, b => Sightings);
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! You're doing fairly well here, I think. But sumOfSightings
is a completely new variable so you can't run the .Sum
method on it because it's not initialized yet. However, the Sum method is intended to be run on the ourBirds
variable which contains the sightings of both myBirds
and yourBirds
put together. Take a look:
var sumOfSightings = ourBirds.Sum(b => b.Sightings);
This will retrieve the sum of all sightings in ourBirds
and assign it back into the variable sumOfSightings
. Hope this helps!
Sara Rena Anderson
15,045 Points{ new Bird { Name = "Cardinal", Color = "Red", Sightings = 3 }, new Bird { Name = "Dove", Color = "White", Sightings = 2 }, new Bird { Name = "Robin", Color = "Red", Sightings = 5 } };
var yourBirds = new List<Bird> { new Bird { Name = "Dove", Color = "White", Sightings = 2 }, new Bird { Name = "Robin", Color = "Red", Sightings = 5 }, new Bird { Name = "Canary", Color = "Yellow", Sightings = 0 } };
var ourBirds = myBirds.Join(yourBirds, mb => mb.Name, yb => yb.Name, (mb, yb) => (mb));
var sumOfSightings = ourBirds.Sum(b => b.Sightings);
Calvin Secrest
24,815 PointsCalvin Secrest
24,815 PointsThank you