![]() |
ArrayList represents an ordered collection of an object that can be indexed individually. It is basically an alternative to an array. It also allows dynamic memory allocation, adding, searching and sorting items in the list. ArrayList.Add(Object) method adds an object to the end of the ArrayList. Properties of ArrayList Class:
Syntax: public virtual int Add (object value); Here, value is the Object to be added to the end of the ArrayList. The value can be null. Return Value: This method returns the ArrayList index at which the value has been added. Exception: This method will give NotSupportedException if the ArrayList is either read-only or fixed size. Below are the programs to illustrate the use of ArrayList.Add(Object) Method: Example 1:
Output:
A B C D E F Example 2:
Output:
1 2 3 4 5 6 Reference:
|
Reffered: https://www.geeksforgeeks.org
C# |
Related |
---|
![]() |
![]() |
![]() |
![]() |
![]() |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 8 |