how to use arraylist in chow to use foreach loop in arraylist in c
C# arraylist get value at index!
C# ArrayList Class
Adapter(IList)
Creates an ArrayList wrapper for a specific IList.
Add(Object)
Adds an object to the end of the ArrayList.
AddRange(ICollection)
Adds the elements of an ICollection to the end of the ArrayList.
BinarySearch(Int32, Int32, Object, IComparer)
Searches a range of elements in the sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element.
BinarySearch(Object)
Searches the entire sorted ArrayList for an element using the default comparer and returns the zero-based index of the element.
BinarySearch(Object, IComparer)
Searches the entire sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element.
Clear()
Removes all elements from the ArrayList.
Clone()
Creates a shallow copy of the ArrayList.
Contains(Object)
Determines whether an element is in the ArrayList.
CopyTo(Array)
Copies the entire ArrayList to a compatible one-dimensional Array, starting at the beginning of the target
difference between array and arraylist in c with example