Npgsql.NpgsqlCopySerializer.AddBytes C# (CSharp) 메소드

AddBytes() 보호된 메소드

Add bytes.
protected AddBytes ( byte bytes ) : void
bytes byte
리턴 void
        protected void AddBytes(byte[] bytes)
        {
            MakeRoomForBytes(bytes.Length);

            for (int i = 0; i < bytes.Length; i++)
            {
                _sendBuffer[_sendBufferAt++] = bytes[i];
            }
        }