Equatable
Description
Helper class for dealing with IEquatable values.
Public / Methods
EqualsArray
Checks if the given arrays are equal.
The given array references are equal if one of the following conditions is true:
-
They refer to the same array instance.
-
They are both
null
. -
The two arrays contain the same sequence of elements, where element equality is determined via IEquatable.
EqualsList
Checks if the given lists are equal.
The given list references are equal if one of the following conditions is true:
-
They refer to the same list instance.
-
They are both
null.
-
The two lists contain the same sequence of elements, where element equality is determined via IEquatable.