Last updated 5 years ago
Was this helpful?
Compares two and returns if they are equal.
public static bool Compare<T>( IList<T> first, IList<T> second )
Parameter
Description
T
The type of the provided lists, e.g. string
string
first
second
True, if the lists contain the same elements, false otherwise.
Type: <T> The first list.
Type: <T> The second list.