Method Equals
Equals(Object)
Checks whether this byte buffer is equal to another object.
If other
is not a byte buffer then false
is returned. Two
byte buffers are equal if and only if their remaining bytes are exactly
the same. Position, limit, capacity and mark are not considered.
Declaration
public override bool Equals(object other)
Parameters
Type | Name | Description |
---|---|---|
System.Object | other | the object to compare with this byte buffer. |
Returns
Type | Description |
---|---|
System.Boolean |
|