Scenario:
My Application bind a library X which has static class. I initialize it in my process. After some time when I load a dll which also use same library X.
I see content of static variable in dll is not initialized. Where I already initialized it in process before loading DLL.
I added initialization code in DLL main , and its working now.
Question : I need to understand this behavior / case.