A Type-safe representation of the the supported output channel constants. This class is immutable and, hence, is thread safe.
示例#1
0
        public override bool Equals(System.Object o)
        {
            bool equals = false;

            if (o is OutputChannels)
            {
                OutputChannels oc = (OutputChannels)o;
                equals = (oc.outputChannels == outputChannels);
            }

            return(equals);
        }
示例#2
0
 private void InitBlock()
 {
     outputChannels = OutputChannels.BOTH;
     equalizer = new Equalizer();
 }