How to open a link from .txt file in c#?
I want to open a link from a .txt file, How can I do that?



Process.Start("cmd.exe", $"start \"{linijka}\"");

start in cmd does anyhow)www.google.com won't work, b/c it won't know if that's supposed to be a file, or some sort of protocol handler https://www.google.com tells it "oh, this is a web link, let's open your default browser"Process.Start("cmd.exe", $"start \"{linijka}\"");startwww.google.comhttps://www.google.comProcess.Start(new ProcessStartInfo("https://www.google.com/") { UseShellExecute = true });