Binarysharp.MemoryManagement.Helpers.ApplicationFinder.FromProcessName C# (CSharp) Method

FromProcessName() public static method

Creates an collection of new Process components and associates them with all the process resources that share the specified process name.
public static FromProcessName ( string processName ) : IEnumerable
processName string The friendly name of the process.
return IEnumerable
        public static IEnumerable<Process> FromProcessName(string processName)
        {
            return Process.GetProcessesByName(processName);
        }