public byte[] ToArray(int start, int length) { return(StreamBufferPool.GetBuffer(this, start, length)); }
// 走StreamBuffer缓存,无GC,注意回收 public byte[] ToArray() { return(StreamBufferPool.GetBuffer(this)); }