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