本文介绍了C#用一个反斜杠写一个路径和用两个反斜杠写一个路径有什么区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
写C:\Program Files和写C:\\Program Files有什么区别?
以及为什么我们有时写@ \.. 。
What is the difference between write "C:\Program Files" and write "C:\\Program Files"?
and why we write sometimes "@\"...
推荐答案
Console.WriteLine(@"hello ""Paul""");
将写作
Will write
Hello "Paul"
写的时候
When you write
"C:\Program Files"
你得到一个错误 - 无法识别的转义序列
You get an error - "Unrecognised escape sequence"
"C:\\Program Files"
你得到的字符串
You get the string
C:\Program Files
和
And
@"C:\Program Files"
会给你同样的东西。
我们何时使用\
简单!
Will give you the same thing.
When do we use \"
Simple!
Console.WriteLine("hello \"Paul\"");
这篇关于C#用一个反斜杠写一个路径和用两个反斜杠写一个路径有什么区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!