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.
当我尝试在我的 WPF 应用程序中创建一个新目录时,我收到以下错误。
" '对与指定绑定约束匹配的'NetworkApplication.Login' 类型的构造函数的调用引发了异常。' 行号'3'和行位置'9'。”
这是我的代码行
DirectoryInfo di = Directory.CreateDirectory(@"C:\\Windows\\Newfolder1");
除了安全问题之外,您还试图转义前面有 @ 的字符串。删除 @ 或取消转义斜杠。