我使用StreamReader读取了一个文本文件。我想写出相同的文本文件,除了前4行和后6行。我该怎么做呢?谢谢。 最佳答案 string[] fileLines = File.ReadAllLines(@"your file path"); var result = fileLines.Skip(4).Take(fileLines.Length - (4 + 6)); File.WriteAllLines(@"your output file path", result);