Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Diagnostics;
- namespace Recetas.CSharp.R0415
- {
- public sealed class EjecucionInternetExplorer
- {
- public static void Main()
- {
- // Nombre del proceso a ejecutar:
- string ie = "iexplore.exe";
- // Argumentos. En este caso el URL de la página a abrir:
- string arg = "http://ortizol.blogspot.com";
- // Invocación de `Process.Start` con los dos argumentos:
- Process.Start (ie, arg);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement