public bool TryGetBitmap(ushort glyphIndex, out GlyphBitmap glyphBmp) => _bitmapList.TryGetBitmap(glyphIndex, out glyphBmp);
public GlyphBitmap GetGlyphBitmap(ushort glyphIndex) { _bitmapList.TryGetBitmap(glyphIndex, out GlyphBitmap found); return(found); }