Nevron .NET Vision
Nevron.Collections Namespace / NStringList Class / Insert Method
Index at which the string is inserted.
The string to insert.


In This Topic
    Insert Method (NStringList)
    In This Topic
    Inserts a string at the specified index.
    Syntax
    'Declaration
     
    
    Public Sub Insert( _
       ByVal index As System.Integer, _
       ByVal value As System.String _
    ) 
    'Usage
     
    
    Dim instance As NStringList
    Dim index As System.Integer
    Dim value As System.String
     
    instance.Insert(index, value)
    public void Insert( 
       System.int index,
       System.string value
    )

    Parameters

    index
    Index at which the string is inserted.
    value
    The string to insert.
    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