Created
September 29, 2011 10:38
-
-
Save djcsdy/1250494 to your computer and use it in GitHub Desktop.
Microsoft are imbeciles
This file contains 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 uriBuilder = new UriBuilder(); | |
uriBuilder.Query = "foo=bar"; | |
Console.WriteLine(uriBuilder.Query); // prints "?foo=bar" | |
uriBuilder.Query = uriBuilder.Query; | |
Console.WriteLine(uriBuilder.Query); // prints "??foo=bar" | |
// Someone at Microsoft needs a swift kick in the balls. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment