CSMSL.Analysis.Quantitation.QuantitationChannelSet.Remove C# (CSharp) Méthode

Remove() public méthode

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