Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Change the Console.Writeline(text) output text font size in a Console App

As an example, we have text such as "Hello World!". I use Console.Writeline("HelloWorld!") and "HelloWorld!" prints in a console app. Is there any way to print "HelloWorld!" larger in a console app?

like image 465
user2445628 Avatar asked Jun 02 '13 17:06

user2445628


1 Answers

Text colors and background colors can be changed quite easily. Look here: http://www.dotnetperls.com/console-color. Font, is a bit 'undercover', though. Look here: possible to get/set console font size in c# .net? Good luck!

like image 114
MordechayS Avatar answered Sep 17 '22 15:09

MordechayS