Nevron .NET Vision
Nevron.Collections Namespace / NArrayList Class / Item Property


In This Topic
    Item Property (NArrayList)
    In This Topic
    Typed array list accessor.
    Syntax
    'Declaration
     
    
    Public Overrides Default Property Item( _
       ByVal index As System.Integer _
    ) As System.Object
    'Usage
     
    
    Dim instance As NArrayList
    Dim index As System.Integer
    Dim value As System.Object
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    public override System.object this[ 
       System.int index
    ]; {get; set;}

    Parameters

    index
    Exceptions
    ExceptionDescription
    Thrown if value type is different from array list type
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also