Method Set
Set(Int32, Int64)
Set the value at the given index in the array.
Declaration
public abstract void Set(int index, long value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Where the value should be positioned. |
System.Int64 | value | A value conforming to the constraints set by the array. |
Set(Int32, Int64[], Int32, Int32)
Bulk set: set at least one and at most len
longs starting
at off
in arr
into this mutable, starting at
index
. Returns the actual number of values that have been
set.
Declaration
public virtual int Set(int index, long[] arr, int off, int len)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
System.Int64[] | arr | |
System.Int32 | off | |
System.Int32 | len |
Returns
Type | Description |
---|---|
System.Int32 |