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

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

Load the default modification file If the default modification is missing or corrupted, it will auto generate it
public static Load ( ) : void
Результат void
        public static void Load()
        {
            // Create file if it doesn't exist
            if (!File.Exists(UserProteasePath))
            {
                RestoreDefaults();
            }

            Load(UserProteasePath);
        }

Same methods

Protease::Load ( string filePath ) : void