Problem Set 1: Getting Started With C#
[Due 1/20 at 11:59pm]

This problem set is intended to help get you get setup for programming in C#.

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. Implement the sorting method; do not use Array.Sort or any other library sorting method.