Add design elements to your console application's interface. You can add visual design to your C# text-based console application even though you can't use graphic files. Alphanumeric characters can be used to create design elements, ASCII design, in your console application. Used strategically, ASCII art can make an interface more interesting. Balance your ASCII art ...continue reading "Console Application ASCII Design"
Tag: tip
Visual Studio Tip: Regions
Regions allow you to name a section of your code to better organize it. You can also collapse or condense regions by using the - and + signs next to the region area. If you hover over a collapsed region, it will show the code inside.
Visual Studio Tip: Formatting Keyboard Shortcut
CTRL + K and then CTRL + D will format your code. This is helpful, for example, if you have code that isn't indented. Using these two keyboard shortcuts will have Visual Studio reformat your code.
Visual Studio Tip: Commenting Multiple Lines
Commenting multiple lines is easy with keyboard shortcuts. Multiple lines can be commented and uncommented by selecting them and clicking the comment icon, or by using the keyboard shortcut [CTRL + E, C] to comment, and [CTRL + E, U] to uncomment. (Microsoft Visual Studio Ultimate 2012 Screenshots)