我在c#类中做了一些Path.Combine的东西,之前它正在工作。我现在已将我的项目移动到tfs工作区,并且在我使用Path.Combine方法的几个类中打破了代码。
以下是现在正在破解的代码:
string rootPath = Environment.CurrentDirectory;
string filePath = Path.Combine(rootPath,@"..\..\AdminAccount\User.txt");
private string[] getLines = System.IO.File.ReadAllLines(@filePath);
错误:当前上下文中不存在名称“Path”。
如果有人能帮助我理解为什么会这样,那么我可以防止它再次发生。
快速浏览我的文件路径,以便您可以准确了解我是如何完成所有这些路径的,尽管这可能与此问题无关:
答案 0 :(得分:5)
string filePath = System.IO.Path.Combine(rootPath,@"..\..\AdminAccount\User.txt");