Ypsilon.Core.Windows.Message.MakeLong C# (CSharp) Method

MakeLong() public static method

public static MakeLong ( int low, int high ) : int
low int
high int
return int
        public static int MakeLong(int low, int high)
        {
            return (high << 0x10) | (low & 0xffff);
        }