Quiz Yourself: Collections

Evaluate your understanding of .NET collection types including lists, FIFO structures, and observable data patterns.

We'll cover the following...
Technical Quiz
1.

Which property should you use to initialize a completely empty ImmutableDictionary<TKey, TValue>?

A.

ImmutableDictionary.New()

B.

ImmutableDictionary.CreateEmpty()

C.

new ImmutableDictionary<TKey, TValue>()

D.

ImmutableDictionary<TKey, TValue>.Empty


1 / 14