Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Diagnostics;
- using System.Threading;
- namespace Receta.CSharp.R0416
- {
- public sealed class UsoKill
- {
- public static void Main()
- {
- // Creación de proceso de Bloc de notas:
- Process procesoBlocNotas = Process.Start ("notepad.exe");
- // Espera de 3 segundos:
- Thread.Sleep (3000);
- // Terminación abrupta del Bloc de notas:
- procesoBlocNotas.Kill ();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement