iTextSharp.text.pdf.PdfContentByte.EscapeString C# (CSharp) Method

EscapeString() static private method

static private EscapeString ( byte b ) : byte[]
b byte
return byte[]
        internal static byte[] EscapeString(byte[] b)
        {
            ByteBuffer content = new ByteBuffer();
            EscapeString(b, content);
            return content.ToByteArray();
        }

Same methods

PdfContentByte::EscapeString ( byte b, ByteBuffer content ) : void
PdfContentByte