在C#中,读取和写入文件通常使用System.IO
命名空间中的File
类。以下是一个简单的示例代码,展示了如何读取和写入文件:
- 读取文件内容:
string filePath = "path/to/your/file.txt";
string fileContent = File.ReadAllText(filePath);
Console.WriteLine(fileContent);
- 写入文件内容:
string filePath = "path/to/your/file.txt";
string content = "Hello, World!";
File.WriteAllText(filePath, content);
请注意,以上示例代码中的path/to/your/file.txt
需要替换为你要读取或写入的文件的路径。另外,还可以使用StreamWriter
类来更灵活地读取和写入文件内容。