Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了 txt 文件并将其添加到“文本”目录中的解决方案中。我尝试使用以下方法阅读它:
string[] lines = File.ReadAllLines("Text\t.txt");
但它说调试目录中没有任何文件“Text\t.txt”。我想让所有文件都在解决方案中。我该如何解决?
在解决方案资源管理器中右键单击该文件,然后选择属性。然后确保Build Action设置为None并且Copy to output directory设置为Copy Always
Build Action
None
Copy to output directory
Copy Always
还要确保你转义了这个\角色:
\
string[] lines = File.ReadAllLines("Text\\t.txt");