iTextSharp.text.Jpeg.GetShort C# (CSharp) Method

GetShort() private static method

Reads a short from the Stream.
private static GetShort ( Stream istr ) : int
istr Stream the Stream
return int
        private static int GetShort(Stream istr)
        {
            return (istr.ReadByte() << 8) + istr.ReadByte();
        }