LMFAO doh@me, it's been a while since I messed about with C#.
In the constructor.Quote:
one thing i dont understand is, where exactly do we declare the Port to value 7788?
static void Main(string[] args)
{
SocketServer server = new SocketServer(7788);
server.onConnection = new ConnectionEvent(OnConnection);
server.Listen();
}