Purify-net / PUrify

PUrify
Apache License 2.0
11 stars 6 forks source link

Feature/mono relative constructor #29

Closed Mpdreamz closed 10 years ago

Mpdreamz commented 10 years ago

Fixes #27

Where new Uri("http://localhost", "?myquerystring") would cause ToString() to return http://localhost?myquerystring instead ofhttp://localhost/?myquerystring".

It also fixes new Uri("http://localhost").AbsolutePath returning an empty string on Mono whereas in .NET it'll return / which is also what unpurified Uri's will return in both Mono as well as .NET.

Mpdreamz commented 10 years ago

GhostDoc.xml gone and ignored (sloppy sorry).

Checking the first character after source directly now.

glennblock commented 10 years ago

Thanks @Mpdreamz