在C#中進行字符串IO操作,可以使用以下代碼示例:
string text = "Hello, World!";
string path = "test.txt";
// 寫入文件
File.WriteAllText(path, text);
string path = "test.txt";
// 讀取文件
string text = File.ReadAllText(path);
Console.WriteLine(text);
string text = "Hello, World!";
string path = "test.txt";
// 使用StreamWriter寫入文件
using (StreamWriter writer = new StreamWriter(path))
{
writer.Write(text);
}
string path = "test.txt";
// 使用StreamReader讀取文件
using (StreamReader reader = new StreamReader(path))
{
string text = reader.ReadToEnd();
Console.WriteLine(text);
}
這些示例演示了如何在C#中進行字符串的IO操作,包括寫入和讀取文件中的字符串。您可以根據實際需求選擇適合的方法來操作字符串數據。