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

FromWindowClassName() public static method

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