iTextSharp.text.Jpeg.GetShort C# (CSharp) Méthode

GetShort() private static méthode

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