Development C# Tutorial

using System;
using System.Diagnostics;
using System.ComponentModel;
class MyProcess
{
    
   static void Main()
   {
            
            ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
            startInfo.WindowStyle = ProcessWindowStyle.Minimized;
            
            Process.Start(startInfo);
            
            startInfo.Arguments = "www.rntsoft.com";
            
            Process.Start(startInfo);
   }
}