Skip to content

Instantly share code, notes, and snippets.

@albilaga
Created April 15, 2020 08:40
Show Gist options
  • Save albilaga/5431d16e921c9434b9571e4f101d833a to your computer and use it in GitHub Desktop.
Save albilaga/5431d16e921c9434b9571e4f101d833a to your computer and use it in GitHub Desktop.
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