CSMSL.Proteomics.Protease.AddProtease C# (CSharp) Метод

AddProtease() публичный статический Метод

public static AddProtease ( string name, Terminus terminus, string cut, string noCut = "" ) : Protease
name string
terminus Terminus
cut string
noCut string
Результат Protease
        public static Protease AddProtease(string name, Terminus terminus, string cut, string noCut = "")
        {
            Protease protease = new Protease(name, terminus, cut, noCut);
            Proteases[name] = protease;

            OnProteasesChanged();

            return protease;
        }