I\'m trying to open an URL following a simple method written all over google and even MSDN. But for unknown reasons I get an Exception as follows:
Win32Except
I had a similar issue trying this with .NET Core and getting a Win32Exception, I dealt with it like so:
Win32Exception
var ps = new ProcessStartInfo("http://myurl") { UseShellExecute = true, Verb = "open" }; Process.Start(ps);