Mega Code Archive

 
Categories / Visual C++ .NET / File Directory
 

Creating a StreamReader class is with static methods of the File class

#include "stdafx.h" using namespace System; using namespace System::IO; int main() {    String^ filename = "textfile.txt";    try    {       StreamReader^ sr2 = File::OpenText(filename);       String^ line;       while ((line = sr2->ReadLine()) != nullptr)       {          Console::WriteLine(line);       }    }    catch(IOException^ e)    {        Console::WriteLine("Exception! {0}", e->Message );    } }