Collections in ASP.net
Collections in ASP.NET C#.net language: Collections are used to saved group of data in a single container 1. ArrayList: // Add : Add an Item in an ArrayList //Insert : Insert an Item in a specified position in an ArrayList //Remove : Remove an Item from ArrayList //RemoveAt: remove an item from a specified position //Sort : Sort Items in an ArrayList int i = 0; ArrayList ItemList = new ArrayList(); ItemList.Add("Item4"); ItemList.Add("Item5"); ItemList.Add("Item2"); ItemList.Add("Item1"); ItemList.Add("Item3"); MessageBox.Show ("Shows Added Items"); ...