Add more classes
[mono.git] / mcs / class / System / System.Net.Sockets / Socket.cs
1 //
2 // System.Net.Sockets.Socket.cs
3 //
4 // Author:
5 //   Andrew Sutton
6 //
7 // (C) Andrew Sutton
8 //
9
10 using System;
11 using System.Net;
12
13 namespace System.Net.Sockets
14 {
15         public class Socket : IDisposable
16         {
17                 public Socket (AddressFamily af, SocketType type, ProtocolType prot)
18                 {
19                 }
20         }
21 }