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

GetHashCode() public method

Generates a hash code for the current instance.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            unchecked {
                return (int) (header_data ^ sample_rate ^
                    frames ^ version);
            }
        }