namespace System.IO { partial class Stream { public virtual int Read (Span destination) { throw new NotImplementedException (); } public virtual void Write(ReadOnlySpan source) { throw new NotImplementedException (); } } }