using System;
using System.Diagnostics;
class Program
{
static void Main(string[] args)
{
// Açılacak web sitesinin URL'sini burada belirtin
string websiteUrl = "https://www.example.com";
// Varsayılan tarayıcıda URL'yi açmak için Process.Start metodunu kullanın
Process.Start(new ProcessStartInfo
{
FileName = websiteUrl,
UseShellExecute = true
});
}
}