Create new
MutableByte class initialized with data from the supplied array up to length of buflen. Internaly,
a call is made to MutableByte.Set(buf[],int) to initialize the new class data buffer.
Namespace: SnmpSharpNetAssembly: SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.9.1.0 (0.9.1)
Syntax
| C# |
|---|
public MutableByte(
byte[] buf,
int buflen
) |
| Visual Basic |
|---|
Public Sub New ( _
buf As Byte(), _
buflen As Integer _
) |
Parameters
- buf
- Type: array<System..::..Byte>[]()[][]
Array used to initialize the class data
- buflen
- Type: System..::..Int32
Number of bytes to use from the argument array to initialize the class.
See Also