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

FromWindowTitle() public static method

Creates a collection of new Process components and associates them with all the process resources that share the specified window title.
public static FromWindowTitle ( string windowTitle ) : IEnumerable
windowTitle string The window title string.
return IEnumerable
        public static IEnumerable<Process> FromWindowTitle(string windowTitle)
        {
            return Windows.Where(window => WindowCore.GetWindowText(window) == windowTitle).Select(FromWindowHandle);
        }