Lists

Lists are collections that can change size throughout the lifetime of your program. They provide more built in functionality that arrays at a slight performance cost.

GitHub solutions: https://github.com/AldworthClass/Part-7---Lists-CSharp

Lists

A list is similar to an array, but provides much more flexibility when removing and adding elements.

You can make a List to store any datatype you wish.

What to Do?

1 - Read through and complete the Lists Tutorial below.

2 - Complete the Lists Programming Assignment found below.

Submit

  • The Lists Programming Assignment.

      • Use the Menu loop to allow for repeated testing of multiple functions.

      • You can put each option into its own method. Each method will need to take the list in as a parameter, and may need to return the modified list.

      • If there is anything you cannot do, just don't implement it but leave the menu options there.

Lists Tutorial

Lists in C#.pdf

Lists Programming Assignment

Lists Programming Assignment.pdf

Files