Stream.cs 240 B

123456789101112131415
  1. namespace System.IO
  2. {
  3. partial class Stream
  4. {
  5. private bool HasOverriddenBeginEndRead ()
  6. {
  7. throw new NotImplementedException ();
  8. }
  9. private bool HasOverriddenBeginEndWrite ()
  10. {
  11. throw new NotImplementedException ();
  12. }
  13. }
  14. }