我想输出一个路径:

string libraryPath = Path.Combine(documentsPath, "..", "Library"); // Library folder
Debug.WriteLine((libraryPath));


但是路很长。

如何以两行输出路径。在第二行的前1/2,然后第二1/2?

最佳答案

使用SubString拆分输出。

// Print 1st half (from index 0 to half of length)
Debug.WriteLine((libraryPath.SubString(0, libraryPath.Length / 2)));
// Print 2nd half (from middle of string to end)
Debug.WriteLine((libraryPath.SubString(libraryPath.Length / 2)));


注意:如果Length为奇数,则前半部分将较短。

关于c# - 如何将C#字符串一分为二?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46342420/

10-10 21:40