1. 首页
  2. 编程语言
  3. VB
  4. VB.NET读写文件代码.

VB.NET读写文件代码.

上传者: 2018-12-26 00:28:57上传 DOC文件 26.5KB 热度 46次
读取和写入文件 以下示例将一行文本写入文件。 ' Write text to a file Sub WriteTextToFile() Dim file As New System.IO.StreamWriter("c:test.txt") file.WriteLine("Here is the first line.") file.Close() End Sub
用户评论