AcManager.Tools.Managers.CarSetupsDirectories.TestArgs C# (CSharp) Метод

TestArgs() приватный Метод

private TestArgs ( FileSystemEventArgs e ) : bool
e System.IO.FileSystemEventArgs
Результат bool
        private bool TestArgs(FileSystemEventArgs e) {
            return e.FullPath.StartsWith(EnabledDirectory, StringComparison.OrdinalIgnoreCase) ||
                   DisabledDirectory != null && e.FullPath.StartsWith(DisabledDirectory, StringComparison.OrdinalIgnoreCase);
        }