InternetExplorer/Program.cs

20 lines
477 B
C#
Raw Normal View History

2025-02-15 13:58:28 +01:00
namespace InternetExplorer
{
class Program
{
static void Main(string[] args)
{
SHDocVw.InternetExplorer internetExplorer = new SHDocVw.InternetExplorer();
object url;
url = "https://google.com";
if (args.Length > 0)
{
url = args[0];
}
internetExplorer.Visible = true;
internetExplorer.Navigate2(ref url);
}
}
}