1. ホーム
  2. c#

[解決済み] ファイルからの読み取りとファイルへの書き込みを最も簡単に行う方法

2022-03-24 15:30:29

質問

ファイルの読み書きの方法には、さまざまなものがあります( テキストファイル バイナリではない) をC#で作成します。

私はプロジェクトでファイルをたくさん扱うつもりなので、簡単で最小限のコードしか使わないものが必要です。私が必要とするのは string の読み書きができればよいので string s.

解決方法は?

使用方法 ファイル.ReadAllText ファイル.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);