System.Diagnostics.FileVersionInfo.HIWORD C# (CSharp) 메소드

HIWORD() 개인적인 정적인 메소드

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