ListHelpers

Compare

Compares two lists and returns if they are equal.

Syntax:

public static bool Compare<T>(
	IList<T> first,
	IList<T> second
)

Type Parameters:

Parameters:

Return Value:

True, if the lists contain the same elements, false otherwise.

Last updated