NullableLargeArrayTOverwriteValue Method
Overwrites the value at the specified index.
Namespace: SnapDB.CollectionsAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void OverwriteValue(
int index,
T value
)
Public Sub OverwriteValue (
index As Integer,
value As T
)
public:
void OverwriteValue(
int index,
T value
)
function OverwriteValue(index, value);
Parameters
- index Int32
- The index of the value to overwrite.
- value T
- The new value to set at the specified index.
This method replaces the existing value at the specified index with the new value.
| IndexOutOfRangeException | Thrown if the index does not exist. |