Bloom.Publish.FontFileFinder.FindLinuxFonts C# (CSharp) Method

FindLinuxFonts() private method

private FindLinuxFonts ( ) : IEnumerable
return IEnumerable
        IEnumerable<string> FindLinuxFonts()
        {
            var fontFiles = new List<string>();
            fontFiles.AddRange(FindLinuxFonts("/usr/share/fonts"));
            fontFiles.AddRange(FindLinuxFonts(Environment.GetFolderPath(Environment.SpecialFolder.Fonts)));	// $HOME/.fonts
            return fontFiles;
        }

Same methods

FontFileFinder::FindLinuxFonts ( string folder ) : IEnumerable