New Feature? :: ThreadLocal.Values
We’ve been considering adding a Values property to System.Threading.ThreadLocal<T>. Values would return a collection of all current values from all threads (e.g. what you’d get if you evaluated Value from each thread). This would allow for easy aggregations, and in fact in our Parallel Extensions Extras we have a wrapp...