Visual Basic .NET从列表中删除项目

示例

Dim aList As New List(Of String)aList.Add("Hello")
aList.Add("删除我!")
aList.Add("World")

'Remove the item from the list at index 1
aList.RemoveAt(1)

'Remove a range of items from a list, starting at index 0, for a count of 1)
'This will remove index 0, and 1!
aList.RemoveRange(0, 1)

'Clear the entire listalist.Clear()