Open Url In Browser : Process « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Process
Open Url In Browser
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
public sealed class Utility
{
public static void OpenUrlInBrowser(string url)
{
Process.Start(url);
}
}
Related examples in the same category