System.Diagnostics.FileVersionInfo.HIWORD C# (CSharp) Method

HIWORD() private static method

private static HIWORD ( uint dword ) : uint
dword uint
return uint
        private static uint HIWORD(uint dword)
        {
            return (dword >> 16) & 0xffff;
        }