FieldUtilitiesCheckArraysAreEqual 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.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
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