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 UsoMetodoStart
- {
- public static void Main()
- {
- // Creación de una instancia de `Process`:
- Process proceso = new Process();
- try
- {
- proceso.StartInfo.FileName = "C:\\Windows\\notepad.exe";
- proceso.StartInfo.CreateNoWindow = true;
- // Inicio explícito del proceso:
- proceso.Start();
- }
- catch (Exception e)
- {
- Console.WriteLine (e.Message);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement