TagLib.Ogg.PageHeader.Equals C# (CSharp) Method

Equals() public method

Checks whether or not the current instance is equal to another instance of PageHeader.
public Equals ( PageHeader other ) : bool
other PageHeader /// A object to compare to the /// current instance. ///
return bool
        public bool Equals(PageHeader other)
        {
            return packet_sizes == other.packet_sizes &&
                version == other.version &&
                flags == other.flags &&
                absolute_granular_position ==
                    other.absolute_granular_position &&
                stream_serial_number ==
                    other.stream_serial_number &&
                page_sequence_number ==
                    other.page_sequence_number &&
                size == other.size &&
                data_size == other.data_size;
        }

Same methods

PageHeader::Equals ( object other ) : bool