DataIsNotData
Type
operator
Summary
Determines whether Left and Right are equal or not.
Syntax
<Left> is not <Right>
Description
Performs a byte by byte comparison of Left and Right, returning true if there is any difference.
Parameters
| Name | Type | Description | 
|---|---|---|
Left  | An expression which evaluates to binary data.  | |
Right  | An expression which evaluates to binary data.  | 
Value
| Name | Type | Description | 
|---|---|---|
return  | Returns false if the result of evaluating Left is the same as that of Right, and true otherwise.  |