示例#1
0
        public override int GetHashCode()
        {
            int hash = 17;

            hash = hash * 31 + Mix.GetHashCode();
            hash = hash * 31 + On.GetHashCode();
            hash = hash * 31 + Gain.GetHashCode();
            //TODO: This might have to be improved to refelect the hashcodes of the contents not the identity of the collection
            hash = hash * 31 + EqBands.GetHashCode();
            return(hash);
        }
示例#2
0
 public IEnumerator <REWEQBand> GetEnumerator()
 {
     return(EqBands.GetEnumerator());
 }