Monthly Archives: August 2009
How to compare two Array lists
The following VB.Net code compares two ArrayLists and returns an ArrayList containing the non-matching items. VB.Net Code: Module modMain Function CompareArrays(ByVal FistArray As ArrayList, ByVal SecondArray As ArrayList) As ArrayList Dim ResultArray As New ArrayList Dim sItem As String For … Continue reading
Posted in VB.Net Tagged array lists, arraylist, c#.net .Net, compare array lists, How to, How to compare arraylists, VB.Net, vb.net code Leave a comment
