up vote 3 down vote favorite
share [g+] share [fb]

I'm trying to read the contents of a text file, in this case a list of computer names (Computer1, computer2 etc,) and I thought that StreamReader would be what you would use but when I do the following:

StreamReader arrComputer = new StreamReader(FileDialog.filename)();

I get this error:

The type or namespace name 'StreamReader' could not be found (are you missing a using directive or an assembly reference?)

I'm very new to C# so I'm sure I'm making a newbie mistake.

link|improve this question

80% accept rate
feedback

8 Answers

up vote 8 down vote accepted

You need to import the System.IO namespace. Put this at the top of your .cs file:

using System.IO;

Either that, or explicitly qualify the type name:

System.IO.StreamReader arrComputer = new System.IO.StreamReader(FileDialog.filename);
link|improve this answer
Wow! That helps! Can't believe I missed that. Man, this place rocks! thanks to everyone who pointed this out to me. Perfect! – Jim Nov 10 '08 at 21:00
feedback

You'll need:

using System.IO;

At the top of the .cs file. If you're reading text content I recommend you use a TextReader which is bizarrely a base class of StreamReader.

try:

using(TextReader reader = new StreamReader(/* your args */))
{
}

The using block just makes sure it's disposed of properly.

link|improve this answer
feedback

try

using System.IO;


StreamReader arrComputer = new StreamReader(FileDialog.filename);
link|improve this answer
Thanks! That fixed it. I saw your reply earlier and totally missed the using System.IO; namespace... – Jim Nov 10 '08 at 21:20
feedback

Make sure you include using System.IO in the usings declaration

link|improve this answer
feedback

Make sure you are have "using System.IO;" at the top of your module. Also, you don't need the extra parenthesis at the end of "new StreamReader(FileDialog.filename)".

link|improve this answer
feedback

Make sure you have the System assembly in your reference of the project and add this to the using part:

using System.IO;
link|improve this answer
Funny I didn't received the Load new answers ... – CheGueVerra Nov 10 '08 at 20:53
feedback

StreamReader is defined in System.IO. You either need to add

using System.IO;

to the file or change your code to:

System.IO.StreamReader arrComputer = new System.IO.StreamReader(FileDialog.filename);
link|improve this answer
feedback

You need to add a reference to the System.IO assembly. You can do this via the "My Project" properties page under the References tab.

link|improve this answer
My Project only exists in Visual Basic.NET projects. – Dana Robinson Dec 30 '08 at 19:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.