Using Visual Studio 2019 WPF app Trying to open a web page with code that has worked for me before but i get an error now
I get an error message saying System.ComponentModel.Win32Exception: 'The system cannot find the file specified.'
Also want to open the page in Chrome
using System;
using System.Windows;
using System.Diagnostics;
private void Button_Click_1(object sender, RoutedEventArgs e)
{
Process.Start("https://www.google.com");
}