WixSharp.Project.FindFile C# (CSharp) 메소드

FindFile() 공개 메소드

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