-
Notifications
You must be signed in to change notification settings - Fork 6.1k
URI paths on Unix #20144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URI paths on Unix #20144
Conversation
MihaZupan
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description LGTM, thanks!
includes/core-changes/corefx/5.0/non-ascii-chars-in-uri-parsed-correctly.md
Outdated
Show resolved
Hide resolved
| Consider the output of the following code when run on Unix. | ||
|
|
||
| ```csharp | ||
| Uri myuri = new Uri("/üri"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unsure if this file will need the BOM character at its beginning or not, since it contains non-ascii (ü).
cc: @sharwell
BillWagner
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM @gewarren
You can
when ready.
…-correctly.md Co-authored-by: Youssef Victor <31348972+Youssef1313@users.noreply.github.com>
| ```csharp | ||
| var myUri = new Uri("/üri"); | ||
|
|
||
| Console.WriteLine(myuri.AbsoluteUri); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gewarren I updated the casing with my suggestion and forgot to do it here and next line.
Fixes #19965.
Preview link.