Selerix Developer Tools
EqualArrayComparison Method






Selerix.Foundation Assembly > Selerix.Foundation.Data Namespace > Utils Class : EqualArrayComparison Method
The first array list.
The second array list.
Compares 2 arrays and determines if equal.
Syntax
'Declaration
 
Public Shared Function EqualArrayComparison( _
   ByVal firstArrayList As ArrayList, _
   ByVal secondArrayList As ArrayList _
) As Boolean
'Usage
 
Dim firstArrayList As ArrayList
Dim secondArrayList As ArrayList
Dim value As Boolean
 
value = Utils.EqualArrayComparison(firstArrayList, secondArrayList)
public static bool EqualArrayComparison( 
   ArrayList firstArrayList,
   ArrayList secondArrayList
)
public function EqualArrayComparison( 
    firstArrayList: ArrayList;
    secondArrayList: ArrayList
): Boolean; static; 
public static function EqualArrayComparison( 
   firstArrayList : ArrayList,
   secondArrayList : ArrayList
) : boolean;
public: static bool EqualArrayComparison( 
   ArrayList* firstArrayList,
   ArrayList* secondArrayList
) 
public:
static bool EqualArrayComparison( 
   ArrayList^ firstArrayList,
   ArrayList^ secondArrayList
) 

Parameters

firstArrayList
The first array list.
secondArrayList
The second array list.
See Also

Reference

Utils Class
Utils Members