DataServiceProviderMethods.AreByteArraysEqual Method

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

Return Value

Type: System.Boolean
Returns a Boolean that is true when the arrays are equal; otherwise false.

See Also

Reference

DataServiceProviderMethods Class

System.Data.Services.Providers Namespace