public bool Equals(AudioFormatInfo other)
 {
     return(true && Format.Equals(other.Format) && Name.Equals(other.Name) && Description.Equals(other.Description) && Flags.Equals(other.Flags) && Endianness.Equals(other.Endianness) && Width.Equals(other.Width) && Depth.Equals(other.Depth) && Silence.Equals(other.Silence) && UnpackFormat.Equals(other.UnpackFormat) && UnpackFunc.Equals(other.UnpackFunc) && PackFunc.Equals(other.PackFunc));
 }