please help me
i need to create a hash table using a multiplication method and i need to create an array of linked list
so how i can to create array of linkedlist in vb or c# ????

Firstly, you have to create the array and after that instantiate the LinkedList elements.

  Dim myarray(3) As LinkedList(Of String)

  For i As Integer = 0 To myarray.GetUpperBound(0)
        myarray(i) = New LinkedList(Of String)
  Next
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.