Created
November 12, 2011 21:02
-
-
Save tt/1361110 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var uri = new Uri("http://example.com/?"); | |
var uriBuilder = new UriBuilder(uri); | |
for (int i = 0; i < 10; i++) | |
{ | |
uriBuilder.Query = uriBuilder.Query; | |
} | |
// uriBuilder.Uri.AbsoluteUri == "http://example.com/???????????" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment