Note
If performance or memory are important in your scenario, consider one of the other samples. They are no more complex. You just have to chose which applies to you.
This sample shows the easiest way to use Figgle.
Add package references:
<ItemGroup>
<PackageReference Include="Figgle" Version="0.6.4" />
<PackageReference Include="Figgle.Fonts" Version="0.6.4" />
</ItemGroup>Use the FiggleFonts class to access the fonts:
FiggleFont font = FiggleFonts.Standard;
Console.WriteLine(font.Render(message));