Problem Set 1: Getting Started With C#
[Due 1/23 at 10am]

Updated 1/21

This problem set is intended to help get you setup for programming in C#. To complete it, you will need to install Visual Studio and NUnit.

Part 1: Hello World

Build a console application which prompts the user for a name, then responds with a message containing that name. For instance:

Hello, what is your name?
Jeff
Nice weather out there, Jeff

Part 2: Sorting

Implement a program which sorts a list of strings given as input on the command line. For instance:

>sort.exe fish g e dog b cat a
a b cat dog e fish g

Your solution must be documented and contain NUnit unit tests for the sorting algorithm. Implement the sorting method; do not use Array.Sort.