Imports System.CollectionsPublic Shared Function ConvertHashTableToArrayList(hsh As Hashtable) As ArrayList Dim alist As New ArrayList() For Each key As Integer In hsh.Keys alist.Add(hsh(key)) Next Return alistEnd Function
Login to post response