The following code example demonstrates how to create a text file and write text to it using the
The file is then filed using the
Example
В | ![]() |
---|---|
// text_write.cpp // compile with: /clr using namespace System; using namespace System::IO; int main() { String^ fileName = "textfile.txt"; StreamWriter^ sw = gcnew StreamWriter(fileName); sw->WriteLine("A text file is born!"); sw->Write("You can use WriteLine"); sw->WriteLine("...or just Write"); sw->WriteLine("and do {0} output too.", "formatted"); sw->WriteLine("You can also send non-text objects:"); sw->WriteLine(DateTime::Now); sw->Close(); Console::WriteLine("a new file ('{0}') has been written", fileName); return 0; } |