好的,我花了很多时间试图解决我读过的帖子所说的简单修复。
我想在我的文档中写入一个文件,这是我的代码。
string st = @"C:\Users\<NAME>\Documents\Sample1.txt";
System.IO.StreamWriter file = new System.IO.StreamWriter(st);
file.WriteLine(Convert.ToString(Sample1[0]));
file.Close();
用户名在哪里。我收到以下错误
“在 mscorlib.ni.dll 中发生了‘System.IO.DirectoryNotFoundException’类型的第一次机会异常。在 mscorlib.ni.dll 中发生了‘System.IO.DirectoryNotFoundException’类型的异常,但未在用户代码中处理”
我正在使用 Visual Studio Express 进行 Windows Phone 开发。
如果有人能指出我做错了什么,我将不胜感激。
谢谢。