We've noticed in our project that adding a reference to a new
Dictionary<> type adds about 600ms to the JIT time of a class.
For example, class A has a private member variable: private
Dictionary<string,CustomClass> _var;
When assembly.CreateInstance() is called for class A, it is 600ms
slower WITH the reference to Dictionary than without.
Is this a known issue, and are there any better workarounds than making
my own typed dictionary class?