Development C# Tutorial

using System;
using System.Diagnostics;
using System.ComponentModel;
    class MyProcess
    {
        static void Main()
        {
            Process [] remoteByName = Process.GetProcessesByName("notepad", "myComputer");
        }    
    }