True if the sequences are equivalent.
public static bool SequenceEquivalent<T>(this IEnumerable<T> source, IEnumerable<T> other)
where T : IHasEquivalence<T>
| parameter | description |
|---|---|
| T | The object type. |
| source | The sequence. |
| other | The other sequence. |