I have what is essentially a jagged array of name value pairs - i need to generate a set of unique name values from this. the jagged array is approx 86,000 x 11 values. It d
Instead of using a Dictionary
why not extend KeyedCollection
Provides the abstract base class for a collection whose keys are embedded in the values.
You then need to override the protected TKey GetKeyForItem(TItem item) function. As it is an hybrid between IList