Property Length
Length
The number of elements the buffer holds.
Declaration
public int Length { get; set; }
Property Value
Type | Description |
---|---|
int |
Implements
Unity.Collections.IIndexable<T>.Length
Examples
for (int i = 0; i < buffer.Length; i++)
{
buffer[i] = i * i;
}