operator []= method

void operator []=(
  1. int index,
  2. T value
)

Copies the value struct into native memory, starting at address * sizeOf<T>() * index.

This extension method must be invoked on a receiver of type Pointer<T> where T is a compile-time constant type.

Implementation

external void operator []=(int index, T value);