正斜杠“/”的 .net 命名空间常量是什么

所以而不是:

somePath + "/" + someFile

我可以:
somePath + .net.namespace.forwardslash + someFile

差别不大,但也许更整洁?

最佳答案

System.IO.Path.DirectorySeparatorChar 是你想要的我认为。

顺便说一句,更明智的做法是使用 System.IO.Path.Combine(somePath,someFile)

关于c# - 正斜杠的命名空间常量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1673043/

10-11 00:22