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 trial

C# C# Streams and Data Processing Reading Data Console I/O

i need to know where is the Error

i write the code like i do it in Sample but i get error Message

CodeChallenge.cs
DirectoryInfo directory = new DirectoryInfo(System.IO.Directory.GetCurrentDirectory());
string fileName = Path.Combine(directory.FullName, "secretmessage.txt");
var file = new FileInfo(fileName);
using(var reader = new System.IO.StreamReader(fileName.FullName))
{
}

2 Answers

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

The third line declaring file is not needed and can be removed.

On the fourth line declare a new StreamReader, instead of System.IO.StreamReader and pass into it fileName, instead of fileName.FullName.

Change these and you are good.

i do it and write this code but code didn't work

DirectoryInfo directory = new DirectoryInfo(System.IO.Directory.GetCurrentDirectory()); string fileName = Path.Combine(directory.FullName, "secretmessage.txt");

using(var reader = new System.IO.StreamReader(fileName.FullName)) {

}