operator []= method
- int index,
- 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);