Gets the value at the specified position in the one-dimensional array. The index is specified as a 32-bit integer.
            
            
            Syntax
            
            
            
            
            'Declaration
 
<JetBrains.Annotations.CanBeNullAttribute()>
Public Overloads Function GetValue( _
   ByVal  As Integer _
) As GenericData
             
        
            
            'Usage
 
Dim instance As SequenceData
Dim index As Integer
Dim value As GenericData
 
value = instance.GetValue(index)
             
        
            
            [JetBrains.Annotations.CanBeNull()]
public GenericData GetValue( 
   int 
)
             
        
            
            [JetBrains.Annotations.CanBeNull()]
public:
GenericData^ GetValue( 
   int 
) 
             
        
             
        
            Parameters
- index
- A 32-bit integer that represents the position of the array element to get.
Return Value
The value at the specified position in the one-dimensional array.
This method can return null (Nothing in Visual Basic).
 
            Exceptions
| Exception | Description | 
|---|
| System.ArgumentOutOfRangeException | 
            The value of an argument is outside the allowable range of values as defined by the invoked method. 
            This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception. | 
| System.IndexOutOfRangeException | 
            An attempt was made to access an element of an array or collection with an index that was outside its bounds. 
            This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception. | 
Requirements
 
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also