iTextSharp.text.Jpeg.GetShort C# (CSharp) 메소드

GetShort() 개인적인 정적인 메소드

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