NullableLargeArrayTOverwriteValue Method

Overwrites the value at the specified index.

Definition

Namespace: SnapDB.Collections
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void OverwriteValue(
	int index,
	T value
)

Parameters

index  Int32
The index of the value to overwrite.
value  T
The new value to set at the specified index.

Remarks

This method replaces the existing value at the specified index with the new value.

Exceptions

IndexOutOfRangeExceptionThrown if the index does not exist.

See Also