Created
April 15, 2020 08:40
-
-
Save albilaga/5431d16e921c9434b9571e4f101d833a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (var family in UIFont.FamilyNames) | |
{ | |
System.Diagnostics.Debug.WriteLine($"{family}"); | |
foreach (var names in UIFont.FontNamesForFamilyName(family)) | |
{ | |
System.Diagnostics.Debug.WriteLine($"{names}"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment