C# Console Uygulamasından Link Açmak
C# programlama dilinde console uygulamasında bir web linki açmak için örnek kod aşağıdadır..
using System;
using System.Diagnostics;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
var pr = new ProcessStartInfo("iexplore.exe");
pr.Arguments = "http://www.google.com.tr/";
Process.Start(pr);
}
}
}