I am trying to start an URL with an Unicode symbol using Process.Start()
but it gives mit a Win32Exception:
An unhandled exception of type 'System.ComponentModel.Win32Exception' occurred in System.dll
Additional information: Das System kann die angegebene Datei nicht finden
(English: "The system can not find the file specified")
The URL I am trying to call is http://.la (this is a valid url, at least for Firefox 38)
After @Codo 's Suggestion I altered my code to this:
string link = "http://.la";
try
{
Process.Start(link);
}
catch (System.ComponentModel.Win32Exception)
{
Process.Start("IExplore.exe", link);
}