CSMSL.Analysis.Quantitation.QuantitationChannelSet.Remove C# (CSharp) Method

Remove() public method

public Remove ( IQuantitationChannel channel ) : bool
channel IQuantitationChannel
return bool
        public bool Remove(IQuantitationChannel channel)
        {
            if (_channels.Remove(channel.MonoisotopicMass))
            {
                MonoisotopicMass -= channel.MonoisotopicMass;
                return true;
            }
            return false;
        }