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.0.0 (0.5.0.0)

Syntax

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

Parameters

buf
array< Byte >[]()[]
Array used to initialize the class data
buflen
Int32
Number of bytes to use from the argument array to initialize the class.

See Also