9

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?

bcr
  • 1,983
  • 27
  • 30
user2445628
  • 91
  • 1
  • 1
  • 2

3 Answers3

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
-4

You have to make a right-click on the line title of an output window. Select properties and change the font, size or background color.

sphinks
  • 3,048
  • 8
  • 39
  • 55
ALEX
  • 1