Allocate() public method

public Allocate ( int size ) : ArraySegment
size int
return ArraySegment
Ejemplo n.º 1
0
 public static ArraySegment <byte> Allocate(int size)
 {
     return(pool.Allocate(size));
 }