I am trying to create a link label in my c# winform that would open a webpage or a website when clicked
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://www.google.com/");
}
But I keep getting this error
System.ComponentModel.Win32Exception: 'The system cannot find the file specified.'