CSMSL.Proteomics.Protease.RemoveProtease C# (CSharp) Method

RemoveProtease() public static method

public static RemoveProtease ( string name ) : bool
name string
return bool
        public static bool RemoveProtease(string name)
        {
            if (Proteases.Remove(name))
            {
                OnProteasesChanged();
                return true;
            }
            return false;
        }

Same methods

Protease::RemoveProtease ( Protease protease ) : bool