CppWriter.cpp
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:1k
源码类别:

.net编程

开发平台:

Visual C++

  1. // This is the main project file for VC++ application project 
  2. // generated using an Application Wizard.
  3. #include "stdafx.h"
  4. #using <mscorlib.dll>
  5. using namespace System;
  6. using namespace System::IO;
  7. // This is the entry point for this application
  8. #ifdef _UNICODE
  9. int wmain(void)
  10. #else
  11. int main(void)
  12. #endif
  13. {
  14.     try
  15.     {
  16.         // Create a FileStream
  17.         FileStream* fs = new FileStream("c:\temp\output.txt", FileMode::Create);
  18.         // Create a StreamWriter
  19.         StreamWriter* sw = new StreamWriter(fs);
  20.         sw->WriteLine(S"First line");
  21.         sw->WriteLine(S"Second line");
  22.         sw->WriteLine(S"Third line");
  23.         sw->Flush();
  24.         sw->Close();
  25.     }
  26.     catch(System::Exception* pe)
  27.     {
  28.         Console::WriteLine(pe->ToString());
  29.     }
  30.     return 0;
  31. }