WixSharp.Project.FindFile C# (CSharp) Method

FindFile() public method

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