NetworkStream.cs 197 B

1234567891011121314151617
  1. //
  2. // System.Net.Sockets.NetworkStream.cs
  3. //
  4. // Author:
  5. // Andrew Sutton
  6. //
  7. // (C) Andrew Sutton
  8. //
  9. using System.IO;
  10. namespace System.Net.Sockets
  11. {
  12. public class NetworkStream : Stream
  13. {
  14. }
  15. }