| 123456789101112131415161718192021 |
- //
- // System.Net.Sockets.Socket.cs
- //
- // Author:
- // Andrew Sutton
- //
- // (C) Andrew Sutton
- //
- using System;
- using System.Net;
- namespace System.Net.Sockets
- {
- public class Socket : IDisposable
- {
- public Socket (AddressFamily af, SocketType type, ProtocolType prot)
- {
- }
- }
- }
|