NAudio.Wave.WaveFormat.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

Provides a Hashcode for this WaveFormat
public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            return (int) waveFormatTag ^ 
                (int) channels ^ 
                sampleRate ^ 
                averageBytesPerSecond ^ 
                (int) blockAlign ^ 
                (int) bitsPerSample;
        }