[C#]Async Socket

01/09/2014 14:08 The-Dreamer#1
Hey ,
this is my first test of coding a socket :D

[Only registered and activated users can see links. Click Here To Register...]

Notice : i didn't finished it yet .. i wanted to know ur opinion first
01/09/2014 14:51 abdoumatrix#2
Good Luck with it.
01/09/2014 15:59 Super Aids#3
Why do you import namespaces that you aren't using Threading, Threading.Tasks, Text, Linq and Collections.Generic?

Also you don't need to do new AsyncCallback(function).
You can just do:
Code:
Socket.BeginAccept(AcceptCallback, null);
^same for BeginReceive etc.