The webBrowser.Url is not a string, but rather is a Uri object. If you still want to use a string to set the WebBrowser.Url you can do so in one of following ways:
- webBrowser.Url = new Uri("path string");
- webBrowser.Navigate("path string");
- webBrowser.Navigate(new Uri("path string"));