GitUtils.CompareByteArrays Method
Namespace: Microsoft.TeamFoundation.Git.Server
Assembly: Microsoft.TeamFoundation.Git.Server (in Microsoft.TeamFoundation.Git.Server.dll)
Syntax
'Declaration
Public Shared Function CompareByteArrays ( _
b1 As Byte(), _
b1start As Integer, _
b2 As Byte(), _
b2start As Integer, _
length As Integer _
) As Boolean
public static bool CompareByteArrays(
byte[] b1,
int b1start,
byte[] b2,
int b2start,
int length
)
public:
static bool CompareByteArrays(
array<unsigned char>^ b1,
int b1start,
array<unsigned char>^ b2,
int b2start,
int length
)
static member CompareByteArrays :
b1:byte[] *
b1start:int *
b2:byte[] *
b2start:int *
length:int -> bool
public static function CompareByteArrays(
b1 : byte[],
b1start : int,
b2 : byte[],
b2start : int,
length : int
) : boolean
Parameters
- b1
Type: array<System.Byte[]
- b1start
Type: System.Int32
- b2
Type: array<System.Byte[]
- b2start
Type: System.Int32
- length
Type: System.Int32
Return Value
Type: System.Boolean
Returns Boolean.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.