文字列配列の値を設定します-
string[] names = new string[] {"Jack", "Tom"};
次に、foreach 配列を使用してファイルに内容を書き込みます-
using (StreamWriter sw = new StreamWriter("names.txt")) { foreach (string s in names) { sw.WriteLine(s); } }
これは例、ファイルにテキストを書き込むために使用されるストリームの配列を表示します。 -
using System; using System.IO; namespace FileApplication { class Program { static void Main(string[] args) { string[] names = new string[] {"Jack", "Tom"}; using (StreamWriter sw = new StreamWriter("names.txt")) { foreach (string s in names) { sw.WriteLine(s); } } // Read and show each line from the file. string line = ""; using (StreamReader sr = new StreamReader("names.txt")) { while ((line = sr.ReadLine()) != null) { Console.WriteLine(line); } } Console.ReadKey(); } } }
以上がC# のストリームのセットの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。