iTextSharp.text.pdf.qrcode.ByteMatrix.ByteMatrix C# (CSharp) Метод

ByteMatrix() публичный Метод

public ByteMatrix ( int width, int height ) : System
width int
height int
Результат System
        public ByteMatrix(int width, int height) {
            bytes = new sbyte[height][];
            for (int k = 0; k < height; ++k) {
                bytes[k] = new sbyte[width];
            }
            this.width = width;
            this.height = height;
        }