标签: c# winforms system.io.file
我正在制作一个简单的文本编辑器..但我有一个问题..我不知道如何保存和打开文件!
我搜索了.. 我已经尝试过System.IO.File..hence the tag。
答案 0 :(得分:0)
您可能想要使用:
System.IO.File.ReadAllLines("path")
和
System.IO.File.WriteAllLines("path", ["content"])