正斜杠的命名空间常量

时间:2009-11-04 10:53:36

标签: c# .net namespaces

正斜杠“/”

的.net命名空间常量是什么

所以而不是:

somePath + "/" + someFile

我能做到:

somePath + .net.namespace.forwardslash + someFile

没有太大区别,但可能更整洁?

4 个答案:

答案 0 :(得分:10)

System.IO.Path.DirectorySeparatorChar是我想要的。

BTW,更实用的方法是使用System.IO.Path.Combine(somePath,someFile)

答案 1 :(得分:1)

您应该使用System.IO.Path.DirectorySeparatorChar

答案 2 :(得分:0)

如果这是您需要的,只需使用正斜杠,但如果您尝试组合文件名和路径,只需使用System.IO.Path.Combine()。

答案 3 :(得分:0)

正斜杠实际上是AltDirectorySeparatorChar