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.
我正在从 VB 转换为 C#,在 C# 中我似乎无法简单地将路径字符串写入应用程序设置..
D:\Something becomes D:\\Something
我也试过@"D:\Something"了,但这也行不通。
@"D:\Something"
那么正确的方法是什么?假设我想要两个设置;路径和文件名。为了使 Path.Combine 成为数据库的有效文件路径/名称,或者换句话说,使用单个反斜杠,我应该如何格式化它们?
您的代码工作正常 - 当您读取带有双斜杠的字符串时,它们再次变为单斜杠。这称为转义。它旨在让您输入特殊字符作为以\. 单斜线在此方案中变得特别,因此您还需要使用斜线对其进行转义。
\