Click or drag to resize
ObjectXAreObjectSequencesEqualT Method
Determine if the two specified sequences are equal.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public static bool AreObjectSequencesEqual<T>(
	IList<T> list1,
	IList<T> list2
)
where T : Object

Parameters

list1
Type: System.Collections.GenericIListT
List1.
list2
Type: System.Collections.GenericIListT
List2.

Type Parameters

T
The element type.

Return Value

Type: Boolean
if the two lists contain equal elements or are both ; otherwise, .
Remarks
Use this method when comparing list fields on two instances inside of IEquatable<T>.Equals().
See Also