如何使用C#清除文本文件的内容?

最佳答案

File.WriteAllText(path, String.Empty);

或者,
File.Create(path).Close();

关于c# - 使用C#清除文本文件的内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2695444/

10-10 11:48