Lists, Dictionaries, and Queues
Learn about working with lists, dictionaries, queues, and priority queues using common methods and syntax.
Working with lists
Let’s explore lists in C#:
Step 1: Use your preferred code editor to add a new Console App or console project named WorkingWithCollections
to the Chapter08
solution or workspace:
In Visual Studio Code, select
WorkingWithCollections
as the activeOmniSharp
project.
Step 2: Add a new class file named Program.Helpers.cs
.
Step 3: In ...