在VS 14中,如果我键入(在C#交互窗口中)进行考试Environment.CurrentDirectory
它说"C:\Users\some.username"
.如何在不手动删除字符的情况下获取"C:Userssome.username"
?
使用 Console.WriteLine(value)
:
> Console.WriteLine(Environment.CurrentDirectory)
C:Users
>
调试器会将其显示为双斜杠,但如果选中变量,它将使用单斜杠。在 C# 代码中转义时,调试器会按预期显示它,但基础值是预期值(即"C:\Users\some.username")。