dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlArray Structure / GetValue Method
One-dimensional array of 32-bit integers that represent the indexes specifying the position of the PgSqlArray element to get. Note that indexes start from 1. Element number 1 is the first element of a PgSqlArray.

In This Topic
    GetValue Method (PgSqlArray)
    In This Topic
    Gets the value at the specified position in the multidimensional PgSqlArray.
    Syntax
    'Declaration
     
    Public Function GetValue( _
       ByVal ParamArray indices() As Integer _
    ) As Object
    public object GetValue( 
       params int[] indices
    )

    Parameters

    indices
    One-dimensional array of 32-bit integers that represent the indexes specifying the position of the PgSqlArray element to get. Note that indexes start from 1. Element number 1 is the first element of a PgSqlArray.

    Return Value

    The value of the specified array element.
    See Also