(6 XP) A function that unifies first name and last name into a single string.
- Fork this repository to your GitHub account.
- Open solution file in Visual Studio.
- Open file
Names.cs
. - Implement the method
ConcatName(string firstName, string lastName)
that formats first name and last name into a single string in a formatlastName, firstName
. - Run with
CTRL+F5
to test it. - If all tests are passed, commit & sync your repository.
- Send a link to your repository for Lab Master (in #slack) to check it.
ConcatName("First", "Last") ➞ "Last, First"
ConcatName("John", "Doe") ➞ "Doe, John"
ConcatName("Mary", "Jane") ➞ "Jane, Mary"