| GeneralUtilsCheckArraysAreEqual Method  | 
 
            Performs a per-value compare on the arrays passed in and returns true if the arrays are of the same length and contain the same values.
            
 
    Namespace: 
   SD.Tools.Algorithmia.UtilityClasses
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.0.0 (1.3.17.0314)
Syntaxpublic static bool CheckArraysAreEqual(
	Array arr1,
	Array arr2
)
Public Shared Function CheckArraysAreEqual ( 
	arr1 As Array,
	arr2 As Array
) As Boolean
Parameters
- arr1
 - Type: SystemArray
 - arr2
 - Type: SystemArray
 
Return Value
Type: 
Booleantrue if the arrays contain the same values and are of the same length
See Also