Method ReflectionSequenceEqual
ReflectionSequenceEqual(object, object)
Call SequenceEqual function on two generic enumerable object
Declaration
public static bool ReflectionSequenceEqual(this object first, object second)
Parameters
| Type | Name | Description |
|---|---|---|
| object | first | An IEnumerable<T> to compare to |
| object | second | An IEnumerable<T> to compare to the first sequence. |
Returns
| Type | Description |
|---|---|
| bool | True if the two source sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type; |