Boo.BooLangProject.BooProjectSources.HasFile C# (CSharp) Метод

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

Checks whether a project contains the specified file.
private HasFile ( string fileName ) : bool
fileName string File name to find.
Результат bool
        private bool HasFile(string fileName)
        {
            return files.Exists(e => e.Path == fileName);
        }