ReadingNotes

Collections & Enums

Collections in C

Introduction to Collections

Using a Simple Collection

Kinds of Collections

Implementing a Collection of Key/Value Pairs

Using LINQ to Access a Collection

Sorting a Collection

Defining a Custom Collection

Iterators

Enumeration types

Remember, enums are useful for representing sets of related constants and making the code more readable and maintainable. They are commonly used in scenarios where you have a fixed set of options to choose from. Additionally, using bit flags with enums allows for representing combinations of options, which is particularly useful in bit manipulation scenarios.

Things i want to know more about