Answers for "array and arraylist c#"

C#
3

c# arraylist

ArrayList arr = new ArrayList();

arr.Add(item) //Adds item at end of ArrayList
arr.Count //get lenght of ArrayList
arr.Remove(int i) //Remove Item from Index
arr[x] //Get Item at pos x
Posted by: Guest on December-02-2021

Code answers related to "array and arraylist c#"

C# Answers by Framework

Browse Popular Code Answers by Language