This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void string SingChristmasCarol() | |
| { | |
| var carolBuilder = new StringBuilder(); | |
| carolBuilder.AppendLine("Tis the season to be jolly!"); | |
| carolBuilder.AppendLine(SingChorus()); | |
| carolBuilder.AppendLine("Deck the halls with boughs of holly!"); | |
| carolBuilder.AppendLine(SingChorus()); | |
| carolBuilder.AppendLine("Don we now our gay apparel!"); | |
| carolBuilder.AppendLine(SingChorus()); |
NewerOlder