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

FromWindowHandle() public static method

Retrieves a new Process component that created the window.
public static FromWindowHandle ( IntPtr windowHandle ) : Process
windowHandle System.IntPtr A handle to the window.
return System.Diagnostics.Process
        public static Process FromWindowHandle(IntPtr windowHandle)
        {
            return FromProcessId(WindowCore.GetWindowProcessId(windowHandle));
        }