我想知道.NET是否有任何類用於簡化URL生成,類似於Path.Combine但是用於URL。.NET中的URL字符串生成
的功能的示例我在尋找:
string url = ClassName.Combine("http://www.google.com", "index")
.AddQueryParam("search", "hello world").AddQueryParam("pagenum", 3);
// Result: http://www.google.com/index?search=hello%20world&pagenum=3
可能重複的[C#地址生成器類(http://stackoverflow.com/questions/1759881/c-sharp-url-builder-class) – jheddings