这是我的代码的一部分:
Uri branches = new Uri(@"https://127.0.0.1:8443/svn/CXB1/Validation/branches");
Uri testBranch = new Uri(branches, "test");
我预计testBranches
会https://127.0.0.1:8443/svn/CXB1/Validation/branches/test
,但确实如此https://127.0.0.1:8443/svn/CXB1/Validation/test
。我不明白为什么 Uri(Uri, string) 构造函数会吃掉路径的最后一部分。