iTextSharp.text.pdf.LZWDecoder.ComposeString C# (CSharp) Метод

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

public ComposeString ( byte oldstring, byte newstring ) : byte[]
oldstring byte
newstring byte
Результат byte[]
        public byte[] ComposeString(byte[] oldstring, byte newstring) {
            int length = oldstring.Length;
            byte[] str = new byte[length + 1];
            Array.Copy(oldstring, 0, str, 0, length);
            str[length] = newstring;
        
            return str;
        }