Socket Array

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How could I create a socket array? Such as if tSocket was a socket then,

tSocket(1);
tSocket(2);
 
Here is the answer to my own question,

Socket[] tSocket= new Socket[10];

Same as a normal array.
 
Back
Top