Class IntList
A list deriving from ArrayListExt with a strongly-typed indexer of type int.
Inherited Members
Namespace: Syncfusion.Collections
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class IntList : ArrayListExt
Constructors
IntList()
Overloaded. Creates a new instance of the IntList class.
Declaration
public IntList()
IntList(Int32[])
Creates a new instance of the IntList class and inserts the items specified in array into the IntList.
Declaration
public IntList(int[] items)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32[] | items | An array of integers. |
Properties
Item[Int32]
Custom indexer of type int. See System.Collections.ArrayList.Item for more information.
Declaration
public int this[int index] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Property Value
| Type |
|---|
| System.Int32 |
Methods
AddRange(Int32[])
Lets you add an array of integers into the list.
Declaration
public void AddRange(int[] value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32[] | value | An integer array. |