public bool Equals(ConferencePortInfo other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.SlotId == SlotId && Equals(other.Name, Name) && other.ClockRate == ClockRate && other.ChannelCount == ChannelCount && other.SamplesPerFrame == SamplesPerFrame && other.BitsPerSample == BitsPerSample; }
public bool Equals(ConferencePortInfo other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(other.SlotId == SlotId && Equals(other.Name, Name) && other.ClockRate == ClockRate && other.ChannelCount == ChannelCount && other.SamplesPerFrame == SamplesPerFrame && other.BitsPerSample == BitsPerSample); }