alexa
menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class IntList

    A list deriving from ArrayListExt with a strongly-typed indexer of type int.

    Inheritance
    System.Object
    ArrayListExt
    IntList
    IntListDesignTime
    Inherited Members
    ArrayListExt.Add(Object)
    ArrayListExt.add_ItemPropertyChanged(SyncfusionPropertyChangedEventHandler)
    ArrayListExt.AddHandlers(Object)
    ArrayListExt.Clear()
    ArrayListExt.CollectionChanged
    ArrayListExt.ForceFixedSize
    ArrayListExt.ForceReadOnly
    ArrayListExt.Insert(Int32, Object)
    ArrayListExt.InsertRange(Int32, ICollection)
    ArrayListExt.IsCollectionChangedEventSuspended
    ArrayListExt.IsFixedSize
    ArrayListExt.IsReadOnly
    ArrayListExt.ItemPropertyChanged
    ArrayListExt.Move(Int32, Int32, Int32)
    ArrayListExt.OnCollectionChanged(CollectionChangeEventArgs)
    ArrayListExt.OnCollectionChanging()
    ArrayListExt.OnItemPropertyChanged(Object, SyncfusionPropertyChangedEventArgs)
    ArrayListExt.RaiseCollectionChanged(CollectionChangeEventArgs)
    ArrayListExt.ReleaseHandler(Object)
    ArrayListExt.remove_ItemPropertyChanged(SyncfusionPropertyChangedEventHandler)
    ArrayListExt.RemoveAt(Int32)
    ArrayListExt.RemoveRange(Int32, Int32)
    ArrayListExt.ResumeEvents(Boolean)
    ArrayListExt.Reverse(Int32, Int32)
    ArrayListExt.Sort(Int32, Int32, IComparer)
    ArrayListExt.SuspendEvents()
    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved