日期: 2024 年 12 月 18 日

1 篇文章

C#文件的读写多种方式
在C#中,文件读写有多种方法,我将为您详细介绍: 1. File类方法(最简单) // 写入文件 File.WriteAllText("path.txt", "Hello World"); File.WriteAllLines("path.txt", new string[] {"Line1", "Line2"}); // 读取文件 str…