ARCed.UI.Win32Helper.MakeLong C# (CSharp) Method

MakeLong() public static method

public static MakeLong ( int low, int high ) : uint
low int
high int
return uint
        public static uint MakeLong(int low, int high)
        {
            return (uint)((high << 16) + low);
        }