RFA .NET Constructor specifing byte array and length of the memory to copy from, and capacity of the buffer.
Namespace: ThomsonReuters.RFA.CommonAssembly: RFA8_NET110_x64 (in RFA8_NET110_x64.dll) Version: 8.0.1.1
Syntax
C# |
---|
public Buffer(
byte[] bytes,
int size,
int capacity
) |
Visual Basic |
---|
Public Sub New ( _
bytes As Byte(), _
size As Integer, _
capacity As Integer _
) |
Visual C++ |
---|
public:
Buffer(
array<unsigned char>^ bytes,
int size,
int capacity
) |
F# |
---|
new :
bytes:byte[] *
size:int *
capacity:int -> Buffer |
Parameters
- bytes
- Type: array<System..::..Byte>[]()[][]
Byte array of the memory to copy from.
- size
- Type: System..::..Int32
The length of the data to be copied.
- capacity
- Type: System..::..Int32
The capacity to allocate for the Buffer.
See Also