How to run a url in monodevelop C #?
2 answers
Unverified:
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName = "xdg-open"; //best guess
proc.StartInfo.Arguments = string_url;
proc.Start();
proc.WaitForExit();
I don't have linux at work to test this, but you should accomplish what you want by changing the command to what it needs using the above as a template.
+1
source to share