jueves, 29 de noviembre de 2012

PROCESOS DEL SISTEMA


using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace WindowsFormsApplication5
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new formProcess());
        }
    }
}


En este programa nos muestra los procesos que se estan generando en el sistema

No hay comentarios:

Publicar un comentario