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 AreByteArraysEqual ( _
left As Byte(), _
right As Byte() _
) As Boolean
'Usage
Dim left As Byte()
Dim right As Byte()
Dim returnValue As Boolean
returnValue = DataServiceProviderMethods.AreByteArraysEqual(left, _
right)
public static bool AreByteArraysEqual(
byte[] left,
byte[] right
)
public:
static bool AreByteArraysEqual(
array<unsigned char>^ left,
array<unsigned char>^ right
)
static member AreByteArraysEqual :
left:byte[] *
right:byte[] -> bool
public static function AreByteArraysEqual(
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 equal; otherwise false.