20 lines
477 B
C#
20 lines
477 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|