ZXing.QrCode.Internal.ByteMatrix.ByteMatrix C# (CSharp) Method

ByteMatrix() public method

public ByteMatrix ( int width, int height ) : System
width int
height int
return System
        public ByteMatrix(int width, int height)
        {
            bytes = new sbyte[height][];
             for (var i = 0; i < height; i++)
            bytes[i] = new sbyte[width];
             this.width = width;
             this.height = height;
        }