Mega Code Archive

 
Categories / VB.Net / Data Structure
 

Sorts the elements in the entire ArrayList

Imports System Imports System.Collections Public Class SamplesArrayList     Public Shared Sub Main()         Dim myAL As New ArrayList()         myAL.Add("T")         myAL.Add("q")         myAL.Add("b")         myAL.Add("f")         PrintValues(myAL)         myAL.Sort()         PrintValues(myAL)     End Sub     Public Shared Sub PrintValues(myList As IEnumerable)         Dim obj As [Object]         For Each obj In  myList             Console.WriteLine("   {0}", obj)         Next obj         Console.WriteLine()     End Sub End Class