iTextSharp.text.pdf.codec.JBIG2SegmentReader.CopyByteArray C# (CSharp) Method

CopyByteArray() public static method

public static CopyByteArray ( byte b ) : byte[]
b byte
return byte[]
        public static byte[] CopyByteArray(byte[] b) {
            byte[] bc = new byte[b.Length];
            System.Array.Copy(b, 0, bc, 0, b.Length);
            return bc;
        }