Bump corefx
[mono.git] / mcs / class / corlib / corert / Stream.cs
1 namespace System.IO
2 {
3         partial class Stream
4         {
5                 public virtual int Read (Span<byte> destination)
6                 {
7                         throw new NotImplementedException ();
8                 }
9
10                 public virtual void Write(ReadOnlySpan<byte> source)
11                 {
12                         throw new NotImplementedException ();
13                 }
14         }
15 }