Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Compares two byte arrays for equality.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Shared Function AreByteArraysNotEqual ( _
left As Byte(), _
right As Byte() _
) As Boolean
'Usage
Dim left As Byte()
Dim right As Byte()
Dim returnValue As Boolean
returnValue = DataServiceProviderMethods.AreByteArraysNotEqual(left, _
right)
public static bool AreByteArraysNotEqual(
byte[] left,
byte[] right
)
public:
static bool AreByteArraysNotEqual(
array<unsigned char>^ left,
array<unsigned char>^ right
)
static member AreByteArraysNotEqual :
left:byte[] *
right:byte[] -> bool
public static function AreByteArraysNotEqual(
left : byte[],
right : byte[]
) : boolean
Parameters
- left
Type: array<System.Byte[]
First byte array.
- right
Type: array<System.Byte[]
Second byte array.
Return Value
Type: System.Boolean
Returns a Boolean that is true when the arrays are not equal; otherwise false.