![]() |
VOOZH | about |
A generic collection in C# is a collection class that can store objects of a specific type, specified when the collection is created. Unlike non-generic collections, generic collections enforce type safety at compile time, preventing invalid types from being added and improve performance by eliminating the need for boxing/unboxing for value types.
A dynamic array that automatically resizes as items are added. Provides indexed access, searching and sorting.
Stores key-value pairs for fast lookups by key.
Represents a first-in, first-out (FIFO) collection.
Represents a last-in, first-out (LIFO) collection.
Stores unique elements without duplicates.
Stores key-value pairs sorted by key automatically.