小编典典

读取和写入文件的最简单方法

c#

在C#中,有许多不同的方式来读写文件( 文本文件 ,而不是二进制文件)。

我只需要一些简单且使用最少代码的东西,因为我将在项目中处理很多文件。我只需要一些东西,string因为我所需要的只是读写string


阅读 226

收藏
2020-05-19

共1个答案

小编典典

使用File.ReadAllTextFile.WriteAllText

这再简单不过了…

MSDN示例:

// Create a file to write to.
string createText = "Hello and Welcome" + Environment.NewLine;
File.WriteAllText(path, createText);

// Open the file to read from.
string readText = File.ReadAllText(path);
2020-05-19