'Declaration
Public Overloads Sub SetValue( _ ByVal genericData As GenericData, _ ByVal index As Integer _ )
'Usage
Dim instance As SequenceData Dim genericData As GenericData Dim index As Integer instance.SetValue(genericData, index)
public void SetValue( GenericData genericData, int index )
public: void SetValue( GenericData^ genericData, int index )
Parameters
- genericData
- The new value for the specified element.
The value of this parameter can be
null
(Nothing
in Visual Basic). - index
- A 32-bit integer that represents the position of the array element to set.
Valid values of this parameter are in the range from
0
to2147483647 (Int32.MaxValue)
.