CSMSL.Analysis.Quantitation.QuantitationChannelSet.Remove C# (CSharp) 메소드

Remove() 공개 메소드

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