public static new StrictComparableList <T> Of(IEnumerable <T> source) { var list = new StrictComparableList <T>(); list.AddRange(source); return(list); }
public bool Equals(StrictComparableList <T> other) { return(other?.SequenceEqual(this) ?? false); }