I have a base URL :
http://my.server.com/folder/directory/sample
And a relative one :
../../other/path
Ho
var baseUri = new Uri("http://my.server.com/folder/directory/sample"); var absoluteUri = new Uri(baseUri,"../../other/path");
OR
Uri uri; if ( Uri.TryCreate("http://base/","../relative", out uri) ) doSomething(uri);