WixSharp.Project.FindFile C# (CSharp) Méthode

FindFile() public méthode

Returns all Files of the Project matching the match pattern.
public FindFile ( Predicate match ) : WixSharp.File[]
match Predicate The match pattern.
Résultat WixSharp.File[]
        public File[] FindFile(Predicate<File> match)
        {
            return (from f in AllFiles
                    where match(f)
                    select f)
                    .ToArray();
        }