// Object overrides public override bool Equals(object obj) { VerbosityMap <T> other = obj as VerbosityMap <T>; if (other == null) { return(false); } return(this.values.SequenceEqual(other.values)); }
internal void CopyBuffer(VerbosityMap <T> copyFrom) { Array.Copy(copyFrom.values, this.values, this.values.Length); }
internal void CopyFrom(VerbosityMap <T> sampleRates) { sampleRates.values.CopyTo(this.values, 0); }