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 trialAriel Rzeszowski
5,482 PointsWhy I can't get next step ? Everything in my opinion is ok, but I get a bummer.
Program ask Did I assign a ReadToEnd method to a treehouse variable. I think it's right
using System;
using System.IO;
using System.Net;
namespace Treehouse.CodeChallenges
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(GetTreehouseHome());
}
public static string GetTreehouseHome()
{
string treehouse = "";
using(var webClient = new WebClient())
{
byte[] treehouseBytes = webClient.DownloadData("https://www.teamtreehouse.com");
using (MemoryStream stream = new MemoryStream(treehouseBytes))
{
using (var streamReader = new StreamReader(stream))
{
treehouse = streamReader.ReadToEnd();
}
}
}
return treehouse;
}
}
}
2 Answers
KRIS NIKOLAISEN
54,971 PointsIn the instructions for task 3: Add another using statement around a new StreamReader object named reader
.
Instead of var reader
you have var streamReader
. Even though that passed task 3 the variable name is what is causing task 4 to fail.
Ariel Rzeszowski
5,482 PointsOMG, I fell stupid, I see diffrents now. I don't know why i didn't see it earlier. Thank you for you respond ;)