Intermediate
C#
Q88 / 100
What is the frozen collections in .NET 8?
Correct! Well done.
Incorrect.
The correct answer is B) Read-only optimized collections (FrozenDictionary, FrozenSet) with faster lookup at the cost of slower construction
B
Correct Answer
Read-only optimized collections (FrozenDictionary, FrozenSet) with faster lookup at the cost of slower construction
Explanation
FrozenDictionary<string, int> is built once from an IEnumerable and optimized for fast reads. Ideal for configuration data loaded at startup.
Progress
88/100