Pchp.Core.PhpString.Append C# (CSharp) Method

Append() public method

public Append ( byte value ) : void
value byte
return void
        public void Append(byte[] value)
        {
            if (value != null && value.Length != 0)
            {
                AddChunk(value);
                _flags |= Flags.ContainsBinary;
            }
        }

Same methods

PhpString::Append ( PhpString value ) : void
PhpString::Append ( string value ) : void

Usage Example

Exemplo n.º 1
0
            public PhpString Serialize(PhpValue value)
            {
                _output = new PhpString();
                _indent = 0;

                //
                Accept(value);
                _output.Append(_nl);

                return _output;
            }