X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2Fcorert%2FStream.cs;fp=mcs%2Fclass%2Fcorlib%2Fcorert%2FStream.cs;h=559cefb96d78c35fd2a59b2719082d4a49811703;hp=0000000000000000000000000000000000000000;hb=f0ce7bc289794b4f022f2b5939e45e2faf56ac87;hpb=410bb8a57e23a901ea47d8a74f88a20972de423d diff --git a/mcs/class/corlib/corert/Stream.cs b/mcs/class/corlib/corert/Stream.cs new file mode 100644 index 00000000000..559cefb96d7 --- /dev/null +++ b/mcs/class/corlib/corert/Stream.cs @@ -0,0 +1,15 @@ +namespace System.IO +{ + partial class Stream + { + public virtual int Read (Span destination) + { + throw new NotImplementedException (); + } + + public virtual void Write(ReadOnlySpan source) + { + throw new NotImplementedException (); + } + } +} \ No newline at end of file