Constructor FastBuffer-1.FastBuffer(+ 1 overload)
Overload
Allocates first buffer of default size. It is on stack (in this variable), and its length is StackSize/sizeof(T)
elements of type T (2048 bytes or 1024 chars or 512 ints...).
public FastBuffer()
Overload(top)
Allocates first buffer of specified size.
public FastBuffer(int n)
Parameters
n (int)
Buffer length (number of elements of type T).
If |