Exemple #1
0
        public bool AddFileToSave(string pathToFileToAdd)
        {
            int result = -1;

            if (File.Exists(pathToFileToAdd))
            {
                result = ARMaxNativeMethods.AddFileToSave(pathToFileToAdd);
            }
            return(result == 0);
        }