iTextSharp.text.Jpeg.GetShortInverted C# (CSharp) Метод

GetShortInverted() приватный статический Метод

Reads an inverted short from the Stream.
private static GetShortInverted ( Stream istr ) : int
istr Stream the Stream
Результат int
        private static int GetShortInverted(Stream istr)
        {
            return (istr.ReadByte() + istr.ReadByte() << 8);
        }