private bool EqualFields(IgmpReportVersion3Layer other) { if (other != null) { return(Enumerable.SequenceEqual <IgmpGroupRecord>((IEnumerable <IgmpGroupRecord>) this.GroupRecords, (IEnumerable <IgmpGroupRecord>)other.GroupRecords)); } return(false); }
/// <summary> /// true iff the group records are equal. /// </summary> private bool EqualFields(IgmpReportVersion3Layer other) { return(other != null && GroupRecords.SequenceEqual(other.GroupRecords)); }
/// <summary> /// true iff the group records are equal. /// </summary> private bool EqualFields(IgmpReportVersion3Layer other) { return other != null && GroupRecords.SequenceEqual(other.GroupRecords); }