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

TryGetProtease() public static method

public static TryGetProtease ( string name, Protease &protease ) : bool
name string
protease Protease
return bool
        public static bool TryGetProtease(string name, out Protease protease)
        {
            return Proteases.TryGetValue(name, out protease);
        }