System.Drawing.Point.LowInt16 C# (CSharp) Method

LowInt16() private static method

private static LowInt16 ( int n ) : short
n int
return short
        private static short LowInt16(int n) => (short)(n & 0xffff);
    }