UtilIsArrayEqualT Method (T, T, Int32, Int32)
|
Are parts of given arrays equal
Namespace:
Guardtime.KSI.Utils
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic static bool IsArrayEqual<T>(
T[] arr1,
T[] arr2,
int index,
int count
)
Public Shared Function IsArrayEqual(Of T) (
arr1 As T(),
arr2 As T(),
index As Integer,
count As Integer
) As Boolean
public:
generic<typename T>
static bool IsArrayEqual(
array<T>^ arr1,
array<T>^ arr2,
int index,
int count
)
static member IsArrayEqual :
arr1 : 'T[] *
arr2 : 'T[] *
index : int *
count : int -> bool
Parameters
- arr1
- Type: T
first array - arr2
- Type: T
second array - index
- Type: SystemInt32
index where to start comparing items - count
- Type: SystemInt32
item count to compare
Type Parameters
- T
- any type
Return Value
Type:
Boolean
See Also