ByteArrayRef Constructor (Int32, Byte) |
Created a new ByteArrayRef with an array of size size, filled in with defaulyValue.
Namespace:
pdftron.Common
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public ByteArrayRef(
int size,
byte defaultValue
)
Public Sub New (
size As Integer,
defaultValue As Byte
)
public:
ByteArrayRef(
[InAttribute] int size,
[InAttribute] unsigned char defaultValue
)
pdftron.Common.ByteArrayRef = function(size, defaultValue);
Parameters
- size
- Type: SystemInt32
The size of the array - defaultValue
- Type: SystemByte
The value to initialize each entry of the array with
See Also