11
Raspik
8y

//Something great
try
{
//Some code.
}
catch(Exception ex)
{
string url = "http://stackoverflow.com/search?q=";
System.Diagnostics.Process.Start($"{url}{ex.Message}");
}

Comments
  • 1
    Woah 😍 Great indeed, never thought of that before!
Add Comment