/*
Given the list of names below, use Console.WriteLine to display each name. Use "No Name" to display null values.
Bonus points for displaying the list in alphabetical order with null ("No Name") values at the top.
Extra bonus points for using a lambda expression.
Even more bonus points for displaying the list in alphabetical order with null ("No Name") at the bottom.
*/
using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
//Console.WriteLine("Hello World");
var nameList = new List<string>{"ChrisB", "Glenn", "David", "Tim", null, "Phillip", "JimC", null, "JimM", "Doug", "Chris", "John"};
}