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:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.2.0 (0.5.2.0)

Syntax

C#
public MutableByte(
	byte[] buf,
	int buflen
)
Visual Basic (Declaration)
Public Sub New ( _
	buf As Byte(), _
	buflen As Integer _
)
Visual C++
public:
MutableByte(
	array<unsigned char>^ buf, 
	int buflen
)

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