Tag: string
-

C# Track, Exercism #45 High School Sweethearts
Relevant link Github solution: exercism-solutions/high-school-sweethearts Exercism #45: High School Sweethearts Learning Goal String Formatting | Verbatim Strings Relevant Information String formatting in C# is just filling in blanks in a text template. Instead of gluing strings together with + signs, C# gives you two clean ways to insert variables into text: 1. The Classic Way: string.Format() (Composite…