iTextSharp.text.pdf.codec.PngWriter.OutputInt C# (CSharp) Метод

OutputInt() публичный статический Метод

public static OutputInt ( int n, Stream s ) : void
n int
s Stream
Результат void
        public static void OutputInt(int n, Stream s)
        {
            s.WriteByte((byte)(n >> 24));
            s.WriteByte((byte)(n >> 16));
            s.WriteByte((byte)(n >> 8));
            s.WriteByte((byte)n);
        }

Same methods

PngWriter::OutputInt ( int n ) : void