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