Remove array byte members starting with position start for the length length bytes.
Namespace:
SnmpSharpNet
Assembly:
SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.2.0 (0.5.2.0)
Syntax
| C# |
|---|
public void Remove(
int start,
int count
) |
| Visual Basic (Declaration) |
|---|
Public Sub Remove ( _
start As Integer, _
count As Integer _
) |
| Visual C++ |
|---|
public:
void Remove(
int start,
int count
) |
Exceptions
| Exception | Condition |
|---|
| System..::.ArgumentOutOfRangeException | Thrown if internal buffer is null or length zero, if start argument
is less then zero or past the end of the internal byte array, and if argument count is greater then length of the
internal byte array, start + count is past greater then the length of the buffer array or if argument count is less then 1. |
See Also