Merge pull request #5327 from marek-safar/corefx-bump
[mono.git] / mcs / class / corlib / corert / Stream.cs
diff --git a/mcs/class/corlib/corert/Stream.cs b/mcs/class/corlib/corert/Stream.cs
new file mode 100644 (file)
index 0000000..559cefb
--- /dev/null
@@ -0,0 +1,15 @@
+namespace System.IO
+{
+       partial class Stream
+       {
+               public virtual int Read (Span<byte> destination)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public virtual void Write(ReadOnlySpan<byte> source)
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}
\ No newline at end of file