View Single Post
  #2 (permalink)  
Old 12-17-2007, 12:05 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,222
hardwired is on a distinguished road
Code:
int size = 5; // an array of Connections Connection[] connections = new Connection[size]; // a LinkedList of Connections LinkedList<Connection> list = new LinkedList<Connection>(); // an array of LinkedLists LinkedList[] lists = new LinkedList[size];
Reply With Quote