I need help understanding what I have to do to open/create text files in C#. In C++, this was quite simple. I'm getting very confused in C# with Stream, FileStream, StreamReader, etc.

All I want is to do is simple: I need to be able to open, create, read and write text files. How can I do this? What classes do I need to use?

Thanks...

LA