我有一个奇怪的问题。
var dummyUri = new UriBuilder("http", "localhost", 8585, "Some[Name");
如果我将此代码块放入控制台应用程序,绝对 uri 将显示如下。
AbsoluteUri = " http://localhost:8585/Some[Name "
如果我将此代码块放在我的测试类中(这意味着我正在使用 nunit),absoluteUri 将显示如下。
AbsoluteUri = " http://localhost:8585/Some%5BName "
我想知道有什么区别。