Class TypedArrayListExt<T>
An ArrayListExt instance that will enforce the type of objects that can be added to the array during runtime.
Inherited Members
Namespace: Syncfusion.Collections
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class TypedArrayListExt<T> : ArrayListExt
Type Parameters
| Name | Description |
|---|---|
| T | Specifies the type of objects that can be added to the array. |
Constructors
TypedArrayListExt()
Declaration
public TypedArrayListExt()
Properties
Item[Int32]
An indexer of the specified template type.
Declaration
public T this[int index] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the object in the list that you want to retrieve. |
Property Value
| Type | Description |
|---|---|
| T | The object at the specified index. |
Methods
AddHandlers(Object)
Declaration
protected override void AddHandlers(object item)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | item |