TagLib.MusePack.StreamHeader.Equals C# (CSharp) Method

Equals() public method

Checks whether or not the current instance is equal to another instance of StreamHeader.
public Equals ( StreamHeader other ) : bool
other StreamHeader /// A object to compare to the /// current instance. ///
return bool
        public bool Equals(StreamHeader other)
        {
            return header_data == other.header_data &&
                sample_rate == other.sample_rate &&
                version == other.version &&
                frames == other.frames;
        }

Same methods

StreamHeader::Equals ( object other ) : bool