How to convert Array to ArrayList in VB.Net How to convert Array to ArrayList in VB.Net arrays arrays

How to convert Array to ArrayList in VB.Net


Try this

Dim sArray() as String 'array of strings...Dim aList as ArrayList = New ArrayList(sArray)