Click or drag to resize

ContainerHelperEqualV Method (ListV, ListV)

Checks if List a equals List b. Requires same values at same index for being true.

Namespace:  de.unika.ipd.grGen.libGr
Assembly:  libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntax
C#
public static bool Equal<V>(
	List<V> a,
	List<V> b
)

Parameters

a
Type: System.Collections.GenericListV
A List.
b
Type: System.Collections.GenericListV
Another List of compatible type to a.

Type Parameters

V

Return Value

Type: Boolean
Boolean result of List comparison.
See Also