I'm working in a UWP app in which I need to launch Microsoft Edge or Internet Explorer when the users clicks on a button.
I've found that the way to do it is calling the System.Diagnostics.Process.Start()
but I get:
The type or namespace name 'Process' does not exist in the namespace 'System.Diagnostics'
I've tried to install it with NuGet but I've gotten several Exceptions also...
I've also tried using Launcher, but it hasn't done anything:
await Launcher.LaunchUriAsync(new Uri("LINK"));
Does anyone know how to implement what I need? Thank you!