This blog defines function Remove and RemoveAt in VB.NET.
ArrayList
ArrayList is the part of System.Collection. It is the part of data structure which contains a simple list of values, and very easily we can add , insert , delete , view etc.. to do with ArrayList.
Remove : The Remove function is used to
remove an Item from ArrayList.
RemoveAt: The RemoveAt function is used to remove an item from a
specified position.
For example
Module Module1
Sub Main()
Dim i As Integer
Dim ItemList As New ArrayList()
ItemList.Add("G")
ItemList.Add("H")
ItemList.Add("I")
ItemList.Add("J")

Join the conversation! Your thoughts help the community grow.