I\'m building an application to retrieve an image from internet. Even though it works fine, it is slow (on wrong given URL) when using try-catch statements in the applicatio
Use it.....
string myString = http//:google.com; Uri myUri; Uri.TryCreate(myString, UriKind.RelativeOrAbsolute, out myUri); if (myUri.IsAbsoluteUri == false) { MessageBox.Show("Please Input Valid Feed Url"); }