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?
Asked
Active
Viewed 7.0k times
9
-
4Consoles do not support that. – SLaks Jun 02 '13 at 18:00
-
you want a programmatic solution? if not just goto preferences and change the font size...... :::))))) – pinkpanther Jun 02 '13 at 18:21
3 Answers
7
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!

Community
- 1
- 1

MordechayS
- 1,552
- 2
- 19
- 29
-3
Im on Windows 10: run your program and when the console window comes up, right click on the console window (on the top portion where the file name is) and select Properties. You can change your fonts and window size there. Close and rerun program and BINGO...all done.
Note: The font changes you make are not permanent. You may have to make them again depending on how you use the console.

vince
- 1
- 1
-
This suggestion has already been made in a comment to the original question. – timelmer Jul 14 '16 at 01:59