C# 101 Review: Method Practice
Follow the instructions to review C# methods.
Boxifier Enhancements
After completing the Boxifier Code-Along, make the following enhancements:
- Add some embellishment to the box!
- Try using ASCII art to make the box a little more interesting
- Create multiple box types!
- Add another parameter to the
boxify
method, and allow the user to decide which type of box to draw
- Add another parameter to the
- Make a menu-based Boxifier!
- Use a
while
loop to repeatedly ask the user for new text to boxify
- Use a
Choose Your Own Adventure
Create a Choose Your Own Adventure-style text-based game. Use methods to represent different story-lines and player choices. Use Console.ReadLine
to receive input from the user, and if
statements to determine which methods should be called.