C# | Getting an enumerator for a range of elements in the ArrayList (original) (raw)
Last Updated : 02 Jul, 2019
ArrayList.GetEnumerator(Int32, Int32) method is used to get an enumerator for a range of elements in the ArrayList.Syntax:
public virtual System.Collections.IEnumerator GetEnumerator (int index, int count);
Parameters:
index: It is the zero-based starting index of type Int32 of the ArrayList section that the enumerator should refer to.count: It is the number of elements of the type Int32 in the ArrayList section that the enumerator should refer to.
Return Value: This method returns an IEnumerator for the specified range of elements in the ArrayList.Exceptions:
- ArgumentOutOfRangeException: If the index or count is less than zero.
- ArgumentException: If the index and count do not specify a valid range in the ArrayList.
Below programs illustrate the use of above-discussed method:Example 1:
CSharp `
// C# code to get an enumerator for a // range of elements in the ArrayList using System; using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating an ArrayList
ArrayList myList = new ArrayList();
// adding elements in myList
myList.Add(14);
myList.Add(45);
myList.Add(78);
myList.Add(48);
myList.Add(49);
myList.Add(51);
myList.Add(77);
// To get an Enumerator
// for the ArrayList
IEnumerator enumerator = myList.GetEnumerator();
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the ArrayList
// and MoveNext returns false.
while (enumerator.MoveNext()) {
Console.WriteLine(enumerator.Current);
}
Console.WriteLine("After GetEnumerator(Int32, Int32) Method: ");
// To get an Enumerator for a range
// of elements of the ArrayList
// here index is 3 and count is 2
IEnumerator e = myList.GetEnumerator(3, 2);
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the ArrayList
// and MoveNext returns false.
while (e.MoveNext()) {
Object obj1 = e.Current;
Console.WriteLine(obj1);
}
}
}
`
Output:
14 45 78 48 49 51 77 After GetEnumerator(Int32, Int32) Method: 48 49
Example 2:
CSharp `
// C# code to get an enumerator for a // range of elements in the ArrayList using System; using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating an ArrayList
ArrayList myList = new ArrayList();
// adding elements in myList
myList.Add("C");
myList.Add("C++");
myList.Add("Java");
myList.Add("Python");
myList.Add("C#");
myList.Add("HTML");
myList.Add("CSS");
Console.WriteLine("After GetEnumerator(Int32, Int32) Method: ");
// To get an Enumerator for a range
// of elements of the ArrayList
// this will give error as index is
// less than zero
IEnumerator e = myList.GetEnumerator(-1, 2);
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the ArrayList
// and MoveNext returns false.
while (e.MoveNext()) {
Object obj1 = e.Current;
Console.WriteLine(obj1);
}
}
}
`
Runtime Error:
Unhandled Exception: System.ArgumentOutOfRangeException: Non-negative number required. Parameter name: index
Note:
- The foreach statement of the C# language hides the complexity of the enumerators. Therefore, using foreach is recommended, instead of directly manipulating the enumerator.
- Enumerators can be used to read the data in the collection, but they cannot be used to modify the underlying collection.
- Current returns the same object until either MoveNext or Reset is called. MoveNext sets Current to the next element.
- An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or deleting elements, the enumerator is irrecoverably invalidated and its behavior is undefined.
- This method is an O(1) operation.
Reference:
Similar Reads
- C# | Getting an enumerator for the entire ArrayList ArrayList.GetEnumerator Method is used to get an enumerator for the entire ArrayList. Syntax: public virtual System.Collections.IEnumerator GetEnumerator (); Return Value: It returns an IEnumerator for the entire ArrayList. Below programs illustrate the use of above-discussed method: Example 1: CSha 2 min read
- C# | Getting a subset of the elements from the source ArrayList ArrayList.GetRange(Int32, Int32) Method is used to get an ArrayList which will represent a subset of the elements in the source ArrayList. Syntax: public virtual System.Collections.ArrayList GetRange (int index, int count); Parameters: index: It is of Int32 type and represents the zero-based ArrayLi 3 min read
- C# | Remove a range of elements from the ArrayList 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.RemoveRange(Int32, Int32) method is used to remove a range of ele 3 min read
- C# | Copy the elements of collection over a range of elements in ArrayList ArrayList.SetRange(Int32, ICollection) Method is used to copy the elements of a collection over a range of elements in the ArrayList. Syntax: public virtual void SetRange (int index, System.Collections.ICollection c); Parameters: index: It is a zero-based ArrayList index at which to start copying th 3 min read
- C# | Remove all elements from the ArrayList 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.Clear method is used to remove all the elements from the ArrayLis 3 min read
- Finding all the Elements of a Range from Start to End in C# The Range Structure is introduced in C# 8.0. It represents a range that has a start and end indexes. You are allowed to find all the range object starting from the start index to end with the help of All Property provided by the Range struct. This property always returns 0..^0 range.Syntax:Â Â public 2 min read
- C# | Insert an element into the ArrayList at the specified index 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.Insert(Int32, Object) method inserts an element into the ArrayLis 3 min read
- C# | Adding the elements to the end of the ArrayList ArrayList.AddRange(ICollection) Method is used to add the elements of an ICollection to the end of the ArrayList. Syntax: public virtual void AddRange (System.Collections.ICollection c); Here, c is the ICollection whose elements should be added to the end of the ArrayList. The collection itself cann 2 min read
- C# | Get or set the number of elements that the ArrayList can contain 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.Capacity property is used to get or set the number of elements th 2 min read
- C# | Get the number of elements actually contained in the ArrayList 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.Count property gets the number of elements actually contained in 3 min read