public new virtual void CopyTo(Stream stream) { StreamUtility.CopyStream(this, stream); }
public virtual void CopyFrom(Stream stream) { SetLength(0); StreamUtility.CopyStream(stream, this); }
public new virtual void CopyTo(Stream stream, int count) { StreamUtility.CopyStream(this, stream, count); }
public virtual void CopyFrom(Stream stream, int count) { StreamUtility.CopyStream(stream, this, count); }