ngen とジェネリック コレクションに苦労しています。ソリューション内のすべてのアセンブリを ngen しましたが、アプリがそのコードを実行するたびに何らかの形でジッティングが発生します。
private Dictionary<int, bool> VerifyedFunc;
public SecurityProvider()
{
...
VerifyedFunc = new Dictionary<int, bool>();
...
}
MDA メッセージ:
Managed Debugging Assistant 'JitCompilationStart' has detected a problem in '*.exe'.
Additional Information:
<mda:msg xmlns:mda="http://schemas.microsoft.com/CLR/2004/10/mda">
<mda:jitCompilationStartMsg break="true">
<method name="mscorlib!System.Collections.Generic.Dictionary`2::.ctor"/>
</mda:jitCompilationStartMsg>
</mda:msg>
NGen とジェネリック コレクションに問題はありますか?