static void Main(string[] args)
{
bool success = FontManager.SetFont("MS Gothic", 16, 12);
if (success)
{
Console.WriteLine("Font successfully set.");
}
else
{
Console.WriteLine("Failed to set font.");
}
Thread.Sleep(2500);
FontManager.PrintStdHandles();
Thread.Sleep(3000);
static void Main(string[] args)
{
bool success = FontManager.SetFont("MS Gothic", 16, 12);
if (success)
{
Console.WriteLine("Font successfully set.");
}
else
{
Console.WriteLine("Failed to set font.");
}
Thread.Sleep(2500);
FontManager.PrintStdHandles();
Thread.Sleep(3000);