Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Class myArrayList
Inherits ArrayList
Sub EliminateDuplicates()
Dim i As Integer = 0
Dim delEntries As ArrayList
While i <= MyBase.Count - 2
Dim j As Integer = i + 1
While j <= MyBase.Count - 1
If MyBase.Item(i).ToString = MyBase.Item(j).ToString Then
MyBase.RemoveAt(j)
End If
j = j + 1
End While
i = i + 1
End While
End Sub